fstream a("C:\\tset",ios::in);
char s[80];
p.getline(s,80);
p.getline(s,80);//略过二行
//如何让p重新回到文件头
fstream a("C:\\tset",ios::in);
char s[80];
p.getline(s,80);
p.getline(s,80);//略过二行
//如何让p重新回到文件头
seekg()和 seekp()
seekg是设置读位置
seekp是设置写位置
basic_istream& seekg(pos_type _Pos);
可以用seekg指针来指定位置
p.seekg(0); //回文件头