C Programming What is the return value of the following statement if it is placed in C program? strcmp("ABC", "ABC"); 0 Compilation Error -1 33 1 0 Compilation Error -1 33 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; p="%dn"; p++; p++; printf(p-2, 300);} None of These %d\n Error 300 None of These %d\n Error 300 ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on Local variables R-values Both of the above Arithmetic expressions Members of a structure Local variables R-values Both of the above Arithmetic expressions Members of a structure ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program code?#include void main(){ int i=3, *j, **k; j = &i; k = &j; printf("%d%d%d", *j, **k, *(*k));} Garbage Value 333 000 444 433 Garbage Value 333 000 444 433 ANSWER DOWNLOAD EXAMIANS APP
C Programming Use of functions Helps to avoid repeating a set of statements many times. Helps to avoid repeated programming across programs. All of these Enhances the logical clarity of the program. Makes the debugging task easier. Helps to avoid repeating a set of statements many times. Helps to avoid repeated programming across programs. All of these Enhances the logical clarity of the program. Makes the debugging task easier. ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ printf("%d, %d", sizeof(int *), sizeof(int **));} 0, 2 2, 4 2, 0 2, 2 4, 4 0, 2 2, 4 2, 0 2, 2 4, 4 ANSWER DOWNLOAD EXAMIANS APP