二进制文件流的打开问题
#include<iostream>#include<fstream>
using namespace std;
int main()
{
fstream data;
data.open("student",ios::in|ios::out|ios::binary);
if(!data)
{
cerr<<"file open error"<<endl;
return -1;
}
data.close();
return 0;
}
为什么程序运行显示 file open error ,怎么修改才使它能打开。