C Programming What is the return value of the following statement if it is placed in C program? strcmp("ABC", "ABC"); Compilation Error 33 -1 0 1 Compilation Error 33 -1 0 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as General purpose language System programming language None of these Data processing language General purpose language System programming language None of these Data processing language ANSWER DOWNLOAD EXAMIANS APP
C Programming A preprocessor command need not start on a new line need not start on the first column has # as the first character comes before the first executable statement need not start on a new line need not start on the first column has # as the first character comes before the first executable statement ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program?#include#define prod(a,b) a*bvoid main(){ int x=3,y=4; printf("%d", prod(x+2,y-1));} 12 None of these 10 11 15 12 None of these 10 11 15 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code?#includevoid main(){ int s=0; while(s++<10) { if(s<4 && s<9) continue; printf("%dt", s); }} None of these 4 5 6 7 8 9 1 2 3 10 4 5 6 7 8 9 10 1 2 3 4 5 6 7 8 9 None of these 4 5 6 7 8 9 1 2 3 10 4 5 6 7 8 9 10 1 2 3 4 5 6 7 8 9 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is function? Function is the fundamental modular unit. A function is usually designed to perform a specific task. All of these Function is a block of code that performs a specific task. It has a name and it is reusable. Function is a block of statements that perform some specific task. Function is the fundamental modular unit. A function is usually designed to perform a specific task. All of these Function is a block of code that performs a specific task. It has a name and it is reusable. Function is a block of statements that perform some specific task. ANSWER DOWNLOAD EXAMIANS APP