C Programming short testarray[4][3] = { {1}, {2,3}, {4,5,6}};printf("%d", sizeof(testarray));Assuming a short is two bytes long, what will be printed by the above code? 7 24 12 It will not compile because not enough initializers are given 6 7 24 12 It will not compile because not enough initializers are given 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program if the array begins at address 65486?#includevoid main(){ int arr[] = {12, 14, 15, 23, 45}; printf("%u, %u", arr, &arr);} 65486, 65490 65486, 65488 65486, 65487 65486, 65486 None of these 65486, 65490 65486, 65488 65486, 65487 65486, 65486 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=0; for(;i++;printf("%d", i)); printf("%d", i);} 11 1 Error 12 11 1 Error 12 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of given program?#includevoid main(){ int i=1, j=-1; if((printf("%d", i)) < (printf("%d", j))) printf("%d", i); else printf("%d", j);} 1 1 -1 1 -1 complier error 1 -1 -1 1 1 -1 1 -1 complier error 1 -1 -1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?for(i=10; i++; i<15) printf("%d ", i); Infinite loop 10 11 12 13 14 9 10 11 12 13 None of these 10 11 12 13 14 15 Infinite loop 10 11 12 13 14 9 10 11 12 13 None of these 10 11 12 13 14 15 ANSWER DOWNLOAD EXAMIANS APP
C Programming int a[5] = {1,2,3}What is the value of a[4]? 3 2 Garbage Value 0 1 3 2 Garbage Value 0 1 ANSWER DOWNLOAD EXAMIANS APP