C Programming If the two strings are identical, then strcmp() function returns 0 1 None of these -1 true 0 1 None of these -1 true ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... First In First Out order Parallel order Last In First Out order Random order Iterative order First In First Out order Parallel order Last In First Out order Random order Iterative order ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#include#define a 10void main(){ #define a 50 printf("%d", a);} 10 None of These 50 Compiler Error 10 None of These 50 Compiler Error ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?for(i=10; i++; i<15) printf("%d ", i); 10 11 12 13 14 15 None of these 9 10 11 12 13 10 11 12 13 14 Infinite loop 10 11 12 13 14 15 None of these 9 10 11 12 13 10 11 12 13 14 Infinite loop ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; printf("%d %d", sizeof(*p), sizeof(p));} 1 2 2 2 1 1 2 1 1 2 2 2 1 1 2 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming int a[5] = {1,2,3}What is the value of a[4]? 3 0 2 Garbage Value 1 3 0 2 Garbage Value 1 ANSWER DOWNLOAD EXAMIANS APP