C Programming What is the return value of the following statement if it is placed in C program? strcmp("ABC", "ABC"); 33 Compilation Error 0 -1 1 33 Compilation Error 0 -1 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Comment on the following?const int *ptr; Both of the above We cannot change the pointer ptr itself. We can change the pointer as well as the value pointed by it. We cannot change the value pointed by ptr. Both of the above We cannot change the pointer ptr itself. We can change the pointer as well as the value pointed by it. We cannot change the value pointed by ptr. ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program code?#includevoid main(){ int i = 10; void *p = &i; printf("%f", *(float *)p);} None of these. 10 Error 0.000000 None of these. 10 Error 0.000000 ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? Gosling F. Codd Dennis Ritchie Bjarne Stroustrup James Dr. Gosling F. Codd Dennis Ritchie Bjarne Stroustrup James Dr. ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... Parallel order Iterative order Last In First Out order Random order First In First Out order Parallel order Iterative order Last In First Out order Random order First In First Out order 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);} 1..0 1..1 0..1 0..0 1..0 1..1 0..1 0..0 ANSWER DOWNLOAD EXAMIANS APP