#include <stdio.h> void main() { char *str[3][3] = {{"Welcome", "to", "the"}, {"Interview", "Mania", "and"} , {"Enjoy", "C", "code"}}; printf("%s", str[2][2]); }
code
Previous Question Next Question
Your comments will be displayed only after manual approval.