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

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

ANSWER DOWNLOAD EXAMIANS APP

C Programming
Use of functions

Helps to avoid repeating a set of statements many times.
All of these
Makes the debugging task easier.
Helps to avoid repeated programming across programs.
Enhances the logical clarity of the program.

ANSWER DOWNLOAD EXAMIANS APP