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