gpt4 book ai didi

C - fprintf 未写入文件

转载 作者:行者123 更新时间:2023-11-30 20:55:38 24 4
gpt4 key购买 nike

C - fprintf 没有写入文件,知道为什么吗?

#include <stdio.h>
#include <stdlib.h>
int main(void){
FILE* pfile=fopen("/home/user-vlad/Programming/C-other/meme.txt","r");
if(pfile==NULL){
printf("ERROR: Stream is equal to NULL\n");
exit(1);
}
fprintf(pfile,"Hello");
fclose(pfile);
return 0;
}

编译器:clang,操作系统:FreeBSD

最佳答案

假设文件打开可能是因为您使用参数“r”调用了fopen(),这意味着已读取。

要编写,您可以使用参数“w”

fopen("/home/user-vlad/Programming/C-other/meme.txt","w");

或者如果文件已经存在“r+”

fopen("/home/user-vlad/Programming/C-other/meme.txt","r+");

或者,如果文件已存在并且您想要追加,则可以使用 "a"

fopen("/home/user-vlad/Programming/C-other/meme.txt","a");

您可以了解有关fopen()的更多信息here .

关于C - fprintf 未写入文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31908100/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com