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

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

ANSWER DOWNLOAD EXAMIANS APP

C Programming
Use of functions

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

ANSWER DOWNLOAD EXAMIANS APP