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