

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