在C语言中,fopen
函数用于打开一个文件,并返回一个指向该文件的文件指针。fopen
函数的原型如下:
FILE *fopen(const char *filename, const char *mode);
其中,filename
是要打开的文件的路径和文件名,mode
是打开文件的模式。常用的文件打开模式包括:
示例代码:
#include <stdio.h>
int main() {
FILE *file = fopen("example.txt", "w");
if (file == NULL) {
printf("File open error\n");
return 1;
}
fprintf(file, "Hello, World!");
fclose(file);
return 0;
}
以上示例代码中,打开了一个名为example.txt
的文件,并使用写入模式"w"打开,然后向文件中写入了"Hello, World!",最后关闭了文件。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: c语言输出保留三位小数怎么实现