gpt4 book ai didi

c - 向文件中插入一个值

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

在下面的代码中,我将值 1 - 9 保存在一个 Excel 文件中,我想在“4”和“5”之间插入一个“a”。我已将指针设置为位置 7,但它仍在最后插入它。请帮助我理解这一点。

FILE *ExcelFile = fopen("testdata.csv","a");
if (ExcelFile == NULL)
return -1;
fprintf(ExcelFile,"1 2 3 4 5 6 7 8 9");
fseek (ExcelFile, 7, SEEK_SET );
//printf("pos is %ld bytes\n", pos);
fprintf(ExcelFile,"a");
fclose(ExcelFile);

最佳答案

这不起作用的原因是因为您正在打开文件进行追加(fopen 调用中的“a”标志)。每当您写入文件时,您写入的数据将始终被附加。如果您的文件在打开前不存在,请改用 fopen("testdata.csv","w")

关于c - 向文件中插入一个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5103684/

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