C Programming Find the output of the following program.void main(){ int i=065, j=65; printf("%d %d", i, j);} 65 65 065 65 Syntax error 053 65 53 65 65 65 065 65 Syntax error 053 65 53 65 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program if the array begins at 65472 and each integer occupies 2 bytes?#includevoid main(){ int a[3][4] = {1, 2, 3, 4, 4, 3, 2, 1, 7, 8, 9, 0}; printf("%u, %u", a+1, &a+1);} 65480, 65496 65480, 65488 None of these 65474, 65476 65474, 65488 65480, 65496 65480, 65488 None of these 65474, 65476 65474, 65488 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includeint main(){ int arr[1] = {10}; printf("%d", 0[arr]); return 0;} 0 10 None of these 6 1 0 10 None of these 6 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 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 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of following program code?#include int main(void){ char p; char buf[10] = {1, 2, 3, 4, 5, 6, 9, 8}; p = (buf + 1)[5]; printf("%d", p); return 0;} 9 Error None of these 5 6 9 Error None of these 5 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the final value of the digit?void main(){ int digit = 0; for( ; digit <= 9; ) digit++; digit *= 2; --digit;} 20 16 19 17 -1 20 16 19 17 -1 ANSWER DOWNLOAD EXAMIANS APP