C Programming Which of the following operator takes only integer operands? + None of these * % / + None of these * % / ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int const *p=5; printf("%d", ++(*p));} 6 5 Compiler Error Garbage Value 6 5 Compiler Error Garbage Value ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int i=10; i = !i>14; printf("i=%d", i); } None of these 1 0 14 10 None of these 1 0 14 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming Let x be an array. Which of the following operations are illegal?I. ++xII. x+1III. x++IV. x*2 I, II and III II and III I and II III and IV I, III and IV I, II and III II and III I and II III and IV I, III and IV ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ printf("%d, %d", sizeof(int *), sizeof(int **));} 4, 4 2, 0 2, 2 0, 2 2, 4 4, 4 2, 0 2, 2 0, 2 2, 4 ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... File scope Block scope No scope at all Local scope Function scope File scope Block scope No scope at all Local scope Function scope ANSWER DOWNLOAD EXAMIANS APP