gpt4 book ai didi

c - 我无法写入文件

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

我第一次尝试用 C 语言编写文件,但我明白了,但我不明白为什么。变量 nombre 是我创建的文件的名称,然后我想在这个文件中写入字符串 testo 的内容,但我总是收到错误:

处理返回-1073741819

char* inserisci (char*);

int main() {
char *nombre=NULL,letra;
char*testo=NULL;

int i=0;
printf("Type file name: ");
nombre=malloc(sizeof(char));
letra=getche();
*(nombre+i)=letra;
while(letra!='\r'){
i++;
nombre=realloc(nombre,(i+1)*sizeof(char));
letra=getche();
*(nombre+i)=letra;
}
*(nombre+i)='\0';
printf("\n");
testo=inserisci(testo);
fopen(nombre,"w+");
fprintf(nombre,"%s",testo);
return 0;
}

char* inserisci (char* testo){
char letra;
int i=0;
testo=malloc(sizeof(char));
letra=getche();
*(testo+i)=letra;
while(letra!='\r'){
i++;
testo=realloc(testo,(i+1)*sizeof(char));
letra=getche();
*(testo+i)=letra;
}
*(testo+i)='\0';
return testo;
}

最佳答案

 fprintf(nombre,"%s",testo);
^here file pointer is needed not the char pointer containing files path or name.

声明文件指针

         FILE *fp;
fp=fopen(nombre,"w+');
fprintf(fp,"%s",testo);

这是fprintf的格式

      int fprintf(FILE *stream, const char *format, ...)

关于c - 我无法写入文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31478403/

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