C Programming What is the return value of the following statement if it is placed in C program? strcmp("ABC", "ABC"); -1 33 Compilation Error 1 0 -1 33 Compilation Error 1 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Choose the correct statement.I. The scope of a macro definition need not be the entire program.II. The scope of a macro definition extends from the point of definition to the end of the file.III. New line is a macro definition delimiter.IV. A macro definition may go beyond a line. I, II, III and IV II and III II, III and IV I, II and III I and II I, II, III and IV II and III II, III and IV I, II and III I and II ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed after execution of the following program code?main(){ printf("\\nab"); printf("\\bsi"); printf("\\rha"); } hai absiha asiha None of these haasi hai absiha asiha None of these haasi ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:#include#define clrscr() 100void main(){ clrscr(); printf("%dn", clrscr());} 0 1 Error 100 0 1 Error 100 ANSWER DOWNLOAD EXAMIANS APP
C Programming The function sprintf() works like printf(), but operates on .......... string stdin Data file no such function in 'C'. stderr string stdin Data file no such function in 'C'. stderr ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output of the following program code.#includevoid main(){ int a, b=7; a = b<4 ? b<<1 : ++b>4 ? 7>>1 : a; printf("%d %d", a, b);} 3 8 3 7 7 3 8 3 None of these 3 8 3 7 7 3 8 3 None of these ANSWER DOWNLOAD EXAMIANS APP