C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 1 0 None of these 1 1 0 1 0 0 1 0 None of these 1 1 0 1 0 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of given program?#includevoid main(){int a=3;for(;a;printf("%d ", a--);} 3 2 1 infinity loop no output 3 2 1 0 3 2 1 infinity loop no output 3 2 1 0 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); Garbage Value 12 13 14 15 Garbage Value 12 13 14 15 ANSWER DOWNLOAD EXAMIANS APP
C Programming char* myfunc(char *ptr){ ptr+=3; return(ptr);}void main(){ char *x, *y; x = "EXAMVEDA"; y = myfunc(x); printf("y=%s", y);}What will be printed when the sample code above is executed? y=EXAMIANS y=VEDA y=EDA y=AMVEDA y=MVEDA y=EXAMIANS y=VEDA y=EDA y=AMVEDA y=MVEDA ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int i=10; i = !i>14; printf("i=%d", i); } 10 None of these 1 0 14 10 None of these 1 0 14 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ int i=065, j=65; printf("%d %d", i, j);} 065 65 Syntax error 53 65 65 65 053 65 065 65 Syntax error 53 65 65 65 053 65 ANSWER DOWNLOAD EXAMIANS APP