C Programming When a function is recursively called all the automatic variables are stored in a .......... Array Linked list Register Stack Queue Array Linked list Register Stack Queue ANSWER DOWNLOAD EXAMIANS APP
C Programming For 16-bit compiler allowable range for integer constants is ________? -32768 to 32767 -32767 to 32768 -32668 to 32667 -3.4e38 to 3.4e38 -32768 to 32767 -32767 to 32768 -32668 to 32667 -3.4e38 to 3.4e38 ANSWER DOWNLOAD EXAMIANS APP
C Programming The library function used to find the last occurrence of a character in a string is laststr() strrchr() strnstr() None of these strstr() laststr() strrchr() strnstr() None of these strstr() ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code?void main(){ int a[10]; printf("%d %d", a[-1], a[12]);} Garbage vlaue Garbage Value 0 Garbage Value Garbage value 0 Code will not compile 0 0 Garbage vlaue Garbage Value 0 Garbage Value Garbage value 0 Code will not compile 0 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will happen after compiling and running following code?main(){ printf("%p", main); } Some address will be printed. Error Will make an infinite loop. None of these. Some address will be printed. Error Will make an infinite loop. None of these. ANSWER DOWNLOAD EXAMIANS APP
C Programming Let x be an array. Which of the following operations are illegal?I. ++xII. x+1III. x++IV. x*2 III and IV I, II and III I, III and IV I and II II and III III and IV I, II and III I, III and IV I and II II and III ANSWER DOWNLOAD EXAMIANS APP