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