为何读不出文件中的数据
我想将链表中的数据保存在文件data.txt中,虽然写入的都是正确的,但当我再用自己编的读取时却读不出来。请大家帮忙看看
我的写入文件格式如下:
fprintf(save," %s %s %s %s %f",current->name ,current->author ,current->press ,current->ISBN,current->price);
我的读取:
fscanf(fpread,," %s %s %s %s %f",current->name ,current->author ,current->press ,current->ISBN,current->price)==5)