1.

What will be the output of the following C code?#include <stdio.h> void main() { char *str[3][3] = {{"Welcome", "to", "the"}, {"Interview", "Mania", "and"} , {"Enjoy", "C", "code"}}; printf("%s", str[2][2]); }

A. Interview
B. Mania
C. C
D. code
E. None of these
Answer» E. None of these


Discussion

No Comment Found