

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