C Programming Find the output of the following program.void main(){ printf("%d, %d", sizeof(int *), sizeof(int **));} 0, 2 2, 0 4, 4 2, 4 2, 2 0, 2 2, 0 4, 4 2, 4 2, 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int const *p=5; printf("%d", ++(*p));} 5 Compiler Error 6 Garbage Value 5 Compiler Error 6 Garbage Value ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?for(i=10; i++; i<15) printf("%d ", i); None of these 9 10 11 12 13 10 11 12 13 14 15 Infinite loop 10 11 12 13 14 None of these 9 10 11 12 13 10 11 12 13 14 15 Infinite loop 10 11 12 13 14 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed when this program is executed?int f(int x){ if(x <= 4) return x; return f(--x);}void main(){ printf("%d ", f(7)); } 4 1 2 3 4 4 5 6 7 Runtime error Syntax error 4 1 2 3 4 4 5 6 7 Runtime error Syntax error ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the return value of the following statement if it is placed in C program? strcmp("ABC", "ABC"); 33 -1 1 0 Compilation Error 33 -1 1 0 Compilation Error ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed after execution of the following code?void main(){ int arr[10] = {1,2,3,4,5}; printf("%d", arr[5]);} 0 Garbage Value 6 5 None of these 0 Garbage Value 6 5 None of these ANSWER DOWNLOAD EXAMIANS APP