C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); None of these 1 1 0 1 1 0 0 0 None of these 1 1 0 1 1 0 0 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char p[]="%dn"; p[1] = 'c'; printf(p, 65);} Error c A 65 Error c A 65 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 and II I, III and IV III and IV I, II and III II and III I and II I, III and IV III and IV I, II and III II and III ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program?#include#define prod(a,b) a*bvoid main(){ int x=3,y=4; printf("%d", prod(x+2,y-1));} 15 11 None of these 12 10 15 11 None of these 12 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ extern int i; i=20; printf("%d", sizeof(i));} Linker Error 20 2 Compiler Error Linker Error 20 2 Compiler Error ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the maximum number of dimensions an array in C may have? 50 20 8 Theoratically no limit. The only practical limits are memory size and compilers. 2 50 20 8 Theoratically no limit. The only practical limits are memory size and compilers. 2 ANSWER DOWNLOAD EXAMIANS APP