#include <iostream>
#include <fstream>
#include <cstdlib>
using namespace std;
int main() {
fstream inOutGrades( "grades.dat", ios::in | ios::out | ios::binary );
if ( !inOutGrades ) {
cerr << "The file could not be opened." << endl;
exit(1);
}
return 0;
}
//Output is
The file could not be opened.
私はこのプログラムをWindows7とlubuntuでQTとCode::blocksを使って試しました。これらはすべてgrades.datファイルを作成できません。