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