#include <stdio.h> int main() { char *ch[21] = {"Interview", "Mania"}; printf("%s", *(ch + 1)); return 0; }
Mania
Previous Question Next Question
Your comments will be displayed only after manual approval.