gpt4 book ai didi

c - 写入文件时出现 malloc 问题

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

每当我将数据写入文本文件时,都会出现垃圾数据...为什么会这样?这是我的代码...谢谢

int main(void)
{
unsigned int option = 0;
int i = 0;
}
getch();
while(option != 5){
option = display();
switch(option){
case 5: save();
break;
}
for(i = 0; i < recordCtr; i++){
free(array[i]);}
}
}

save(){
FILE *stream = NULL;
stream = fopen("student.txt", "wt");
printf("\nSaving the student list directory. Wait a moment please...");
int i =0;
for (i=0; i<3; i++){
fprintf(stream, "%5s %30s %5s\n", array[i]->studentID, array[i]->name, array[i]->course);
}
fclose(stream);
}

最佳答案

存在一些错误。

  1. recordCtr 始终递增。如果我选择添加 2 次,则填充 array[0]、array[1] 和 array[2]。但是当你释放内存时,你就释放了 recordCtr 值。在这种情况下,您恰好释放了最多 6 条学生记录。这可能是一场灾难。
  2. 切换结束后,您将释放学生记录内存。如果用户选择退出,则调用 save() 来尝试保存已释放的学生记录。从释放的内存中读取数据是个坏主意。

你什么时候看到垃圾数据。我的意思是在什么输入下?

关于c - 写入文件时出现 malloc 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4320522/

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