/* Echo two lines on the terminal */ #include main () { char item[81]; gets(item); /* Input the first line */ printf("%s\n", item); gets(item); /* Overwrite it with the second line*/ printf("%s\n", item); }