使用C语言编写程序,将下面的两行写入到文件名为"hello"的txt文件中。
时间: 2024-03-20 19:45:04 浏览: 78
c语言中怎样把文本文件中的一列数导入程序中
5星 · 资源好评率100%
您可以使用C语言的标准库函数`fopen`和`fprintf`来实现:
```c
#include <stdio.h>
int main() {
FILE *file;
file = fopen("hello.txt", "w");
fprintf(file, "Hello\n");
fprintf(file, "World!");
fclose(file);
return 0;
}
```
这段代码会创建一个名为"hello.txt"的文件,并将"Hello"和"World!"写入文件中,分别占用一行。使用`fopen`打开文件,并使用`fprintf`向文件中写入数据。使用`fclose`关闭文件。
阅读全文