C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 0 1 1 1 None of these 0 0 1 0 0 1 1 1 None of these 0 0 1 0 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[4]){} void fun(int p[][4]){} void fun(int *p[][4]){} void fun(int *p[3][4]){} None of these void fun(int *p[4]){} void fun(int p[][4]){} void fun(int *p[][4]){} void fun(int *p[3][4]){} None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed after compiling and running the following code?main() { char *p; printf("%d %d",sizeof(*p), sizeof(p));} 2 2 1 2 1 1 2 1 2 2 1 2 1 1 2 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int c = - -2; printf("c=%d", c);} 1 2 Error -2 1 2 Error -2 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#include#define a 10void main(){ #define a 50 printf("%d", a);} Compiler Error None of These 50 10 Compiler Error None of These 50 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming An array elements are always stored in ________ memory locations. Sequential and Random None of these Sequential Random Sequential and Random None of these Sequential Random ANSWER DOWNLOAD EXAMIANS APP