gpt4 book ai didi

c - 用C将文本写入.txt文件

转载 作者:行者123 更新时间:2023-11-30 21:44:53 25 4
gpt4 key购买 nike

我希望能够创建一个文件,然后将文本写入其中,但是我不确定该怎么做。
这是我的一部分代码:

FILE *note;
char name[100], *content;
printf("Write the name of your file.\n");
scanf("%s", &name);
note=fopen(name, "w");
printf("Write the content of your file\n");


接下来我该怎么办?

最佳答案

接下来我该怎么办?
  


好吧,您应该为content分配一些空间(尝试malloc()),然后将数据读入该空间(如果需要,可以realloc()增大该空间)。

之后,您需要将内容写入文件。

最后使用free()释放不再需要的空间。

关于c - 用C将文本写入.txt文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33053764/

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