C Programming When a function is recursively called all the automatic variables are stored in a .......... Linked list Stack Array Register Queue Linked list Stack Array Register Queue ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the final value of the digit?void main(){ int digit = 0; for( ; digit <= 9; ) digit++; digit *= 2; --digit;} 19 20 16 -1 17 19 20 16 -1 17 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=0, j=0; if(i && j++) printf("%d..%d", i++, j); printf("%d..%d", i, j);} 0..1 1..1 0..0 1..0 0..1 1..1 0..0 1..0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.#define INC(X) X++void main(){ int x=4; printf("%d", INC(x++));} 4 Error 5 6 4 Error 5 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=10; i=!i>14; printf("i=%d", i);} 14 0 10 1 14 0 10 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming C preprocessor Takes care of include files Acts before compilation Takes care of conditional compilation Takes care of macros All of these Takes care of include files Acts before compilation Takes care of conditional compilation Takes care of macros All of these ANSWER DOWNLOAD EXAMIANS APP