MCQOPTIONS
Saved Bookmarks
| 1. |
The output of the code below is void m(int k) { printf("hi"); } void m(double k) { printf("hello"); } void main() { m(3); } |
| A. | hi |
| B. | hello |
| C. | Compile time error |
| D. | Nothing |
| Answer» D. Nothing | |