C Programming What is the return value of the following statement if it is placed in C program? strcmp("ABC", "ABC"); -1 33 1 0 Compilation Error -1 33 1 0 Compilation Error ANSWER DOWNLOAD EXAMIANS APP
C Programming If integer needs two bytes of storage, then maximum value of an unsigned integer is 215 216 215 – 1 216 – 1 None of these 215 216 215 – 1 216 – 1 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output?main() { char *p; p = "Hello"; printf("%cn",*&*p); } Hello Some address will be printed H None of these. Hello Some address will be printed H None of these. ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... ASCII value of the input read. The actual values read for each argument. The number of successful read input values. 1 0 ASCII value of the input read. The actual values read for each argument. The number of successful read input values. 1 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming When a function is recursively called all the automatic variables are stored in a .......... Stack Linked list Array Queue Register Stack Linked list Array Queue Register ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=3; switch(i) { default: printf("zero"); case 1: printf("one"); break; case 2: printf("two"); break; case 3: printf("three"); break; }} Error None of These zero three Error None of These zero three ANSWER DOWNLOAD EXAMIANS APP