MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the program? #include<stdio.h> int fun(int i) { i++; return i; } int main() { int fun(int); int i=3; fun(i=fun(fun(i))); printf("%d n", i); return 0; } |
| A. | 5 |
| B. | 4 |
| C. | Error |
| D. | Garbage value |
| Answer» B. 4 | |