MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code?#include <stdio.h> void main() { char *ch[3] = {"Interview", "Mania"}; printf("%s", ch[1]); } |
| A. | Compilation Error |
| B. | Interview |
| C. | Mania |
| D. | Garbage value |
| E. | None of these |
| Answer» D. Garbage value | |