Home » C Programming » Functions

What will be the output of the program? #include int fun(int); int main() { float k=3; fun(k=fun(fun(k))); printf("%f\n", k); return 0; } int fun(int i) { i++; return i; }

Correct Answer: 5.000000

← Previous Question Next Question→

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion