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