C Programming When a function is recursively called all the automatic variables are stored in a .......... Queue Stack Linked list Register Array Queue Stack Linked list Register Array ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of given program?#includevoid main(){ int i=1, j=-1; if((printf("%d", i)) < (printf("%d", j))) printf("%d", i); else printf("%d", j);} 1 1 -1 1 1 -1 -1 -1 complier error 1 1 -1 1 1 -1 -1 -1 complier error ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int const *p=5; printf("%d", ++(*p));} Compiler Error 6 5 Garbage Value Compiler Error 6 5 Garbage Value ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... Iterative order First In First Out order Parallel order Random order Last In First Out order Iterative order First In First Out order Parallel order Random order Last In First Out order ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program. void main() { int i=01289; printf("%d", i); } Syntax error 1289 0713 0289 713 Syntax error 1289 0713 0289 713 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:main(){ int i = abc(10); printf("%d", --i);}int abc(int i){ return(i++);} 11 10 None of these. 9 11 10 None of these. 9 ANSWER DOWNLOAD EXAMIANS APP