MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code? #include <stdio.h> void main() { static int n; if (n++ < 5) main(); } |
| A. | 5 |
| B. | Infinite calls to main |
| C. | Runtime Error |
| D. | Varies |
| E. | main is called twice |
| Answer» F. | |