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

5 4 3 2 1
Compilation Error
5 5 5 5 5
Infinite Loop
None of these

ANSWER DOWNLOAD EXAMIANS APP