fgets2.c 313 B

1234567891011121314
  1. /* fgets2.c -- using fgets() and fputs() */
  2. #include <stdio.h>
  3. #define STLEN 10
  4. int main(void)
  5. {
  6. char words[STLEN];
  7. puts("Enter strings (empty line to quit):");
  8. while (fgets(words, STLEN, stdin) != NULL && words[0] != '\n')
  9. fputs(words, stdout);
  10. puts("Done.");
  11. return 0;
  12. }