MCQOPTIONS
Saved Bookmarks
| 1. |
The following program main() { static char a[3][4] = {"abcd", "mnop", "fghi"}; putchar(**a); } |
| A. | will not compile successfully |
| B. | results in run-time error |
| C. | prints garbage |
| D. | none of the above |
| Answer» E. | |