MCQOPTIONS
Saved Bookmarks
| 1. |
The output of the code below is void main() { int k = m(); printf("%d", k); } void m() { printf("hello"); } |
| A. | hello 5 |
| B. | Error |
| C. | Nothing |
| D. | Junk value |
| Answer» B. Error | |