gpt4 book ai didi

c - 我的 C 编程工作

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

这两个函数是:

void readFromFile(char file[], int antal_varor, struct storagemanipulation 
*inventory)
{

最佳答案

fp==fopen("minFil.txt","r")

这是错误。

fp=fopen("minFil.txt","r")

将是正确的方法。

你可以像这样简单地做

fp=fopen("minFil.txt","r");
if( fp == NULL ){
// error
}
else{
// do cool stuff
}

这更具可读性。不易出错。

此外,op 正在写入与读取内容相同的文件。也许要写入的文件不同。

关于c - 我的 C 编程工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47778630/

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