C Programming What is the return value of the following statement if it is placed in C program? strcmp("ABC", "ABC"); 33 1 -1 0 Compilation Error 33 1 -1 0 Compilation Error ANSWER DOWNLOAD EXAMIANS APP
C Programming For 16-bit compiler allowable range for integer constants is ________? -32767 to 32768 -32668 to 32667 -32768 to 32767 -3.4e38 to 3.4e38 -32767 to 32768 -32668 to 32667 -32768 to 32767 -3.4e38 to 3.4e38 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the correct value to return to the operating system upon the successful completion of a program? 1 2 Program do no return a value. -1 1 2 Program do no return a value. -1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? F. Codd Dr. Dennis Ritchie Bjarne Stroustrup Gosling James F. Codd Dr. Dennis Ritchie Bjarne Stroustrup Gosling James ANSWER DOWNLOAD EXAMIANS APP
C Programming The declarationint (*p) [5];means p is one dimensional array of size 5, of pointers to integers. p is a pointer to a 5 elements integer array. None of these. The same as int *p[ p is one dimensional array of size 5, of pointers to integers. p is a pointer to a 5 elements integer array. None of these. The same as int *p[ ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program code?main(){ static int var = 5; printf("%d ", var--); if(var) main();} Infinite Loop 5 4 3 2 1 Compilation Error 5 5 5 5 5 None of these Infinite Loop 5 4 3 2 1 Compilation Error 5 5 5 5 5 None of these ANSWER DOWNLOAD EXAMIANS APP