题目描述:向文件in.txt中写入字符串helloworld。_第二十二章 文件操作
时间: 2024-02-01 08:14:47 浏览: 76
本章介绍了文件操作的相关知识,包括文件的打开、读写、关闭等操作。下面演示如何向文件in.txt中写入字符串helloworld。
```
#include <stdio.h>
int main()
{
FILE *fp;
fp = fopen("in.txt", "w"); // 打开文件并以写入方式打开
fprintf(fp, "helloworld"); // 向文件写入字符串
fclose(fp); // 关闭文件
return 0;
}
```
以上代码中,我们首先打开文件in.txt并以写入方式打开,然后使用fprintf函数向文件写入字符串helloworld,最后关闭文件。运行程序后,可以在in.txt文件中看到已经写入了helloworld字符串。
阅读全文