/* Echo a single word on the terminal */ #include main () { char item[50]; scanf("%s", item); printf("%s\n", item); }