C Programming
What will be printed when this program is executed?int f(int x){ if(x <= 4) return x; return f(--x);}void main(){ printf("%d ", f(7)); }

Syntax error
4
4 5 6 7
Runtime error
1 2 3 4

ANSWER DOWNLOAD EXAMIANS APP

C Programming
Use of functions

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

ANSWER DOWNLOAD EXAMIANS APP