題目描述C++讀寫(xiě)問(wèn)題題目來(lái)源及自己的思路不知道怎么用鏈表通過(guò)read()函數(shù)怎么調(diào)用,其中head是頭指針相關(guān)代碼// 請(qǐng)把代碼文本粘貼到下方(請(qǐng)勿用圖片代替代碼)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();}你期待的結(jié)果是什么?實(shí)際看到的錯(cuò)誤信息又是什么?
C++讀寫(xiě)輸入輸出問(wèn)題
明月笑刀無(wú)情
2018-08-03 20:43:56