C Programming
Determine Output:void main(){ static int var = 5; printf("%d ", var--); if(var) main();}

5 5 5 5 5
Infinite Loop
None of These
5 4 3 2 1

ANSWER DOWNLOAD EXAMIANS APP

C Programming
A preprocessor command

has # as the first character
need not start on a new line
need not start on the first column
comes before the first executable statement

ANSWER DOWNLOAD EXAMIANS APP