/* Echo two words on the terminal */ #include main () { char item[5]; scanf("%4s", item); /* Input the first typed word */ printf("%s\n", item); scanf("%4s", item); /* Overwrite it with the second word */ printf("%s\n", item); }