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