C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 0 1 1 1 0 0 None of these 1 0 0 1 1 1 0 0 None of these 1 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... Last In First Out order Iterative order First In First Out order Random order Parallel order Last In First Out order Iterative order First In First Out order Random order Parallel order ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code fragment?void main(){ printf("%x",-1<<4);} fff1 fff0 fff4 fff3 fff2 fff1 fff0 fff4 fff3 fff2 ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on Both of the above Arithmetic expressions Members of a structure Local variables R-values Both of the above Arithmetic expressions Members of a structure Local variables R-values ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the value of i and j after execution of following program?#includevoid main(){int i, j;for(i=0,j=0;i<10,j<20;i++,j++){printf("i=%d %t j=%d", i, j); }} Run time error 10 10 10 20 20 20 Run time error 10 10 10 20 20 20 ANSWER DOWNLOAD EXAMIANS APP
C Programming The library function used to find the last occurrence of a character in a string is laststr() strstr() None of these strnstr() strrchr() laststr() strstr() None of these strnstr() strrchr() ANSWER DOWNLOAD EXAMIANS APP