C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 1 1 None of these 0 0 0 1 1 0 1 1 None of these 0 0 0 1 1 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming The function sprintf() works like printf(), but operates on .......... stdin stderr no such function in 'C'. Data file string stdin stderr no such function in 'C'. Data file string ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... Parallel order Iterative order First In First Out order Last In First Out order Random order Parallel order Iterative order First In First Out order Last In First Out order Random order ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following correctly accesses the seventh element stored in arr, an array with 100 elements? arr[7] arr{7} arr[6] arr{6} None of these arr[7] arr{7} arr[6] arr{6} None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#include#includevoid main(){ char str1[20] = "Hello", str2[20] = " World"; printf("%s", strcpy(str2, strcat(str1, str2)));} World WorldHello None of these Hello Hello World World WorldHello None of these Hello Hello World ANSWER DOWNLOAD EXAMIANS APP
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);} x=4 x=0 x=1 x=5 Error x=4 x=0 x=1 x=5 Error ANSWER DOWNLOAD EXAMIANS APP