C Programming What will be the output of the following program code?main(){ static int var = 5; printf("%d ", var--); if(var) main();} 5 5 5 5 5 Infinite Loop None of these Compilation Error 5 4 3 2 1 5 5 5 5 5 Infinite Loop None of these Compilation Error 5 4 3 2 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which one of the following is not a valid identifier? _examians 1examians examians1 exam_veda _examians 1examians examians1 exam_veda ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... Parallel order Iterative order Random order First In First Out order Last In First Out order Parallel order Iterative order Random order First In First Out order Last In First Out order ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char p[]="%dn"; p[1] = 'c'; printf(p, 65);} Error A 65 c Error A 65 c ANSWER DOWNLOAD EXAMIANS APP
C Programming Given b=110 and c=20, what is the value of 'a' after execution of the expression a=b-=c*=5? -110 10 450 110 -10 -110 10 450 110 -10 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is not a correct variable type? char double int float real char double int float real ANSWER DOWNLOAD EXAMIANS APP