1.

What will be the output of the following program code?main(){ static int var = 5; printf("%d ", var--); if(var) main();}

A. 5 5 5 5 5
B. 5 4 3 2 1
C. Infinite Loop
D. Compilation Error
E. None of these
Answer» C. Infinite Loop


Discussion

No Comment Found