C Programming When a function is recursively called all the automatic variables are stored in a .......... Linked list Register Stack Queue Array Linked list Register Stack Queue Array ANSWER DOWNLOAD EXAMIANS APP
C Programming If the two strings are identical, then strcmp() function returns 1 true 0 None of these -1 1 true 0 None of these -1 ANSWER DOWNLOAD EXAMIANS APP
C Programming int a[5] = {1,2,3}What is the value of a[4]? 3 2 1 Garbage Value 0 3 2 1 Garbage Value 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.#includevoid main(){ int y=10; if(y++>9 && y++!=10 && y++>11) printf("%d", y); else printf("%d", y);} 11 Compilation error 14 12 13 11 Compilation error 14 12 13 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i = -1; +i; printf("i = %d, +i = %d", i, +i);} i = -1, +i = 1 i = 1, +i = 1 None of These i = -1, +i = -1 i = -1, +i = 1 i = 1, +i = 1 None of These i = -1, +i = -1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is the correct way of declaring a float pointer: None of these float *ptr; *float ptr; float ptr; None of these float *ptr; *float ptr; float ptr; ANSWER DOWNLOAD EXAMIANS APP