C Programming Determine Output:#define int charvoid main(){ int i = 65; printf("sizeof(i)=%d", sizeof(i));} Compiler Error sizeof(i)=2 None of These sizeof(i)=1 Compiler Error sizeof(i)=2 None of These sizeof(i)=1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is correct way to define the function fun() in the below program?#includevoid main(){ int a[3][4]; fun(a);} void fun(int *p[3][4]){} void fun(int *p[][4]){} None of these void fun(int *p[4]){} void fun(int p[][4]){} void fun(int *p[3][4]){} void fun(int *p[][4]){} None of these void fun(int *p[4]){} void fun(int p[][4]){} ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int c = - -2; printf("c=%d", c);} 1 Error 2 -2 1 Error 2 -2 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code?void main(){ int a[10]; printf("%d %d", a[-1], a[12]);} 0 Garbage Value 0 0 Garbage vlaue Garbage Value Garbage value 0 Code will not compile 0 Garbage Value 0 0 Garbage vlaue Garbage Value Garbage value 0 Code will not compile ANSWER DOWNLOAD EXAMIANS APP
C Programming Which one of the following is not a reserved keyword for C? register default auto case main register default auto case main 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 III and IV II and III I, III and IV I and II I, II and III III and IV II and III I, III and IV I and II I, II and III ANSWER DOWNLOAD EXAMIANS APP