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