C Programming When a function is recursively called all the automatic variables are stored in a .......... Array Register Stack Queue Linked list Array Register Stack Queue Linked list ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#include#define a 10void main(){ #define a 50 printf("%d", a);} 10 None of These 50 Compiler Error 10 None of These 50 Compiler Error ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... Last In First Out order First In First Out order Parallel order Random order Iterative order Last In First Out order First In First Out order Parallel order Random order Iterative order ANSWER DOWNLOAD EXAMIANS APP
C Programming C programs are converted into machine language with the help of A compiler An Editor None of these. An operating system A compiler An Editor None of these. An operating system ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){int value1, value2=100, num=100;if(value1=value2%5) num=5;printf("%d %d %d", num, value1, value2);} 100 0 100 100 5 100 5 0 100 100 100 100 5 0 20 100 0 100 100 5 100 5 0 100 100 100 100 5 0 20 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code fragment?void main(){ printf("%x",-1<<4);} fff0 fff4 fff1 fff2 fff3 fff0 fff4 fff1 fff2 fff3 ANSWER DOWNLOAD EXAMIANS APP