1
0

getsputs.c 318 B

12345678910111213141516
  1. /* getsputs.c -- using gets() and puts() */
  2. #include <stdio.h>
  3. #define STLEN 81
  4. int main(void)
  5. {
  6. char words[STLEN];
  7. puts("Enter a string, please.");
  8. gets(words); // typical use
  9. printf("Your string twice:\n");
  10. printf("%s\n", words);
  11. puts(words);
  12. puts("Done.");
  13. return 0;
  14. }