C Programming When a function is recursively called all the automatic variables are stored in a .......... Stack Array Queue Linked list Register Stack Array Queue Linked list Register ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=1, j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; }} GOOD BAD Compiler Error None of These GOOD GOOD BAD Compiler Error None of These GOOD ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int i=10; i = !i>14; printf("i=%d", i); } None of these 14 1 0 10 None of these 14 1 0 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming The library function used to find the last occurrence of a character in a string is strstr() strrchr() None of these strnstr() laststr() strstr() strrchr() None of these strnstr() laststr() ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ printf("%p", main);} None of These make an infinite loop Error Some address will be printed None of These make an infinite loop Error Some address will be printed ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program?void main(){ int a, b, c, d; a = 3; b = 5; c = a, b; d = (a, b); printf("c=%d d=%d", c, d);} c=3 d=3 c=5 d=3 c=5 d=5 c=3 d=5 c=3 d=3 c=5 d=3 c=5 d=5 c=3 d=5 ANSWER DOWNLOAD EXAMIANS APP