fprintf()和fscanf()函数

作者:追风剑情 发布于:2020-3-26 14:35 分类:C

示例:向文件中写入读取单词

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <string.h>
  5.  
  6. #define MAX 41
  7.  
  8. int main(int argc, char* argv[])
  9. {
  10. FILE *fp;
  11. char words[MAX];
  12.  
  13. if ((fp = fopen("wordy", "a+")) == NULL)
  14. {
  15. fprintf(stdout, "Can't open \"wordy\" file.\n");
  16. exit(EXIT_FAILURE);
  17. }
  18.  
  19. puts("Enter words to add to the file; press the #");
  20. puts("key at the beginning of a line to terminate.");
  21. while ((fscanf(stdin, "%40s", words) == 1) && (words[0] != '#'))
  22. fprintf(fp, "%s\n", words);
  23.  
  24. puts("File contents:");
  25. rewind(fp); // 返回到文件开始处
  26. //从文件指针中读取1个单词存放到words中
  27. while (fscanf(fp, "%s", words) == 1)
  28. puts(words);
  29. puts("Done!");
  30. if (fclose(fp) != 0)
  31. fprintf(stderr, "Error closing file\n");
  32.  
  33. system("pause");
  34. return 0;
  35. }

运行测试

1111.png

再次运行

222.png

标签: C语言

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号