原文: https://www.programiz.com/c-programming/examples/write-file

在此示例中,您将学习使用fprintf()语句在文件中写一个句子。

要理解此示例,您应该了解以下 C 编程主题:


该程序将用户输入的句子存储在文件中。


  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int main() {
  4. char sentence[1000];
  5. // creating file pointer to work with files
  6. FILE *fptr;
  7. // opening file in writing mode
  8. fptr = fopen("program.txt", "w");
  9. // exiting program
  10. if (fptr == NULL) {
  11. printf("Error!");
  12. exit(1);
  13. }
  14. printf("Enter a sentence:\n");
  15. fgets(sentence, sizeof(sentence), stdin);
  16. fprintf(fptr, "%s", sentence);
  17. fclose(fptr);
  18. return 0;
  19. }

输出

  1. Enter a sentence: C Programming is fun
  2. Here, a file named program.txt is created. The file will contain C programming is fun text.

在程序中,用户输入的句子存储在sentence变量中。

然后,以写入模式打开名为program.txt的文件。 如果文件不存在,将创建它。

最后,将使用fprintf()函数将用户输入的字符串写入此文件,并关闭文件。