MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code?#include <stdio.h> void fun(); int main() { void fun(int); fun(); return 0; } void fun() { printf("200"); } |
| A. | Compilation Error |
| B. | 200 |
| C. | Runtime Error |
| D. | Depends on compiler |
| E. | None of these |
| Answer» B. 200 | |