MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this C code? void main() { m(); void m() { printf("hi"); } } |
| A. | hi |
| B. | Compile time error |
| C. | Nothing |
| D. | Varies |
| Answer» C. Nothing | |