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

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

ANSWER DOWNLOAD EXAMIANS APP

C Programming
A preprocessor command

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

ANSWER DOWNLOAD EXAMIANS APP