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)); }

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

ANSWER DOWNLOAD EXAMIANS APP

C Programming
A preprocessor command

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

ANSWER DOWNLOAD EXAMIANS APP