C Programming What will be printed if the following code is executed?void main(){ int x=0; for( ; ; ) { if( x++ == 4 ) break; continue; } printf("x=%d", x);} Error x=5 x=0 x=1 x=4 Error x=5 x=0 x=1 x=4 ANSWER DOWNLOAD EXAMIANS APP
C Programming What number will z in the sample code given below?int z, x=5, y= -10, a=4, b=2;z = x++ - --y*b/a; 9 6 10 11 5 9 6 10 11 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on Members of a structure Arithmetic expressions Both of the above R-values Local variables Members of a structure Arithmetic expressions Both of the above R-values Local variables ANSWER DOWNLOAD EXAMIANS APP
C Programming Which one of the following is not a reserved keyword for C? default auto register case main default auto register case main ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?int b=15, c=5, d=8, e=8, a;a = b>c ? c>d ? 12 : d>e ? 13 : 14 : 15;printf("%d", a); 14 15 Garbage Value 12 13 14 15 Garbage Value 12 13 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char far *farther, *farthest; printf("%d..%d", sizeof(farther), sizeof(farthest));} 2..2 4..4 2..4 4..2 2..2 4..4 2..4 4..2 ANSWER DOWNLOAD EXAMIANS APP