

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> void fun(int n) { printf("Interview"); } void fun(double n) { printf("Mania"); } void main() { fun(10); } |
A. | Interview |
B. | 10 |
C. | Mania |
D. | Compilation Error |
E. | None of these |
Answer» E. None of these | |