C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 0 0 0 1 None of these 1 0 1 1 0 0 0 1 None of these 1 0 1 1 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); Infinite loop Syntax error 0 0123456789 10 Infinite loop Syntax error 0 0123456789 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming The statement int **a; is legal but meaningless None of these. is syntactically and semantically correct is illegal is legal but meaningless None of these. is syntactically and semantically correct is illegal ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i = -1; +i; printf("i = %d, +i = %d", i, +i);} i = 1, +i = 1 None of These i = -1, +i = 1 i = -1, +i = -1 i = 1, +i = 1 None of These i = -1, +i = 1 i = -1, +i = -1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char far *farther, *farthest; printf("%d..%d", sizeof(farther), sizeof(farthest));} 4..2 2..4 2..2 4..4 4..2 2..4 2..2 4..4 ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? Dr. Gosling Bjarne Stroustrup Dennis Ritchie F. Codd James Dr. Gosling Bjarne Stroustrup Dennis Ritchie F. Codd James ANSWER DOWNLOAD EXAMIANS APP