MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this C code?#include <stdio.h>int main(){ char *p[1] = {"Interview Mania"}; printf("%s", (p)[0]); return 0;} |
| A. | Compile time error |
| B. | Undefined behavior |
| C. | Interview Mania |
| D. | None of the mentioned |
| Answer» D. None of the mentioned | |