1.

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

A. 5
B. 3
C. Garbage value
D. 4
Answer» B. 3


Discussion

No Comment Found

Related MCQs