题目描述C++读写问题题目来源及自己的思路不知道怎么用链表通过read()函数怎么调用,其中head是头指针相关代码// 请把代码文本粘贴到下方(请勿用图片代替代码)infile.open("student.txt",ios::in); infile.read((char *)head,sizeof(student)); while(infile){cout<<head->num<<"t"; cout<<head->name<<"t"; cout<<head->score<<endl; head=head->next; infile.read((char *)head,sizeof(student)); }infile.close();}你期待的结果是什么?实际看到的错误信息又是什么?
1 回答
慕勒3428872
TA贡献1848条经验 获得超6个赞
这写的好乱啊,head头指针保存数据吗?head传入参数要变为const char…………infile是fstream流对吗?read(unsigned char buf,int num);
t 也打错了
添加回答
举报
0/150
提交
取消