gpt4 book ai didi

c - 如何从 c 中的文本文件中删除所有文本?

转载 作者:太空宇宙 更新时间:2023-11-04 05:48:48 25 4
gpt4 key购买 nike

<分区>

FILE* 类型的给定参数 fd ,例如:
FILE* fd = fopen("a.txt","w")

如何删除a.txt中的所有文本?

注意:我不知道文件的名称是什么(我正在编写一个函数,该函数获取有人已经在 main 中打开的 FILE* 类型的参数)。


例如:

FILE* fd = fopen("a.txt","w");
assert(fd != NULL); // it's not important for this question.
fprintf(fd,"hello1\n");
fprintf(fd,"hello2\n");
//.... and now I want to remove all the text from a.txt. How can I do it?
// The cleaning will be in other function that get just fd (without the
// name of the file)
fclose(fd);

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