C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 0 0 1 0 None of these 0 1 1 1 0 0 1 0 None of these 0 1 1 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming The function sprintf() works like printf(), but operates on .......... no such function in 'C'. stdin string stderr Data file no such function in 'C'. stdin string stderr Data file ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ static int i=i++, j=j++, k=k++; printf("%d %d %d", i, j, k);} 0 0 0 garbage values 1 1 1 Error 0 0 0 garbage values 1 1 1 Error ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=0, j=0; if(i && j++) printf("%d..%d", i++, j); printf("%d..%d", i, j);} 0..1 1..0 0..0 1..1 0..1 1..0 0..0 1..1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Pick the correct statements.I. The body of a function should have only one return statement.II. The body of a function may have many return statements.III. A function can return only one value to the calling environment.IV. If return statement is omitted, then the function does its job but returns no value to the calling environment. II and III II and IV I and III III and IV I and II II and III II and IV I and III III and IV I and II ANSWER DOWNLOAD EXAMIANS APP
C Programming Consider the following type definition.typedef char x[10];x myArray[5];What will sizeof(myArray) be ? (Assume one character occupies 1 byte) 15 None of these 50 10 30 15 None of these 50 10 30 ANSWER DOWNLOAD EXAMIANS APP