C Programming Determine Output:void main(){ static int var = 5; printf("%d ", var--); if(var) main();} Infinite Loop 5 5 5 5 5 None of These 5 4 3 2 1 Infinite Loop 5 5 5 5 5 None of These 5 4 3 2 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char far *farther, *farthest; printf("%d..%d", sizeof(farther), sizeof(farthest));} 2..4 4..2 4..4 2..2 2..4 4..2 4..4 2..2 ANSWER DOWNLOAD EXAMIANS APP
C Programming An array elements are always stored in ________ memory locations. Sequential and Random Random Sequential None of these Sequential and Random Random Sequential None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following piece of code?for(i = 0; i<10; i++);printf("%d", i); 0 Syntax error 0123456789 Infinite loop 10 0 Syntax error 0123456789 Infinite loop 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program code?main(){ static int var = 5; printf("%d ", var--); if(var) main();} 5 5 5 5 5 Infinite Loop 5 4 3 2 1 Compilation Error None of these 5 5 5 5 5 Infinite Loop 5 4 3 2 1 Compilation Error None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming void main(){ int a=10, b; b = a++ + ++a; printf("%d %d %d %d", b, a++, a, ++a);}what will be the output when following code is executed? 12 10 11 13 22 14 12 13 22 11 11 11 22 13 14 14 22 12 12 13 12 10 11 13 22 14 12 13 22 11 11 11 22 13 14 14 22 12 12 13 ANSWER DOWNLOAD EXAMIANS APP