下面是我的程序:
#include <fstream>
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
fstream hd;
hd.open("fstream.dat", fstream::in | fstream::out);
hd.put('a');
hd.close();
return 0;
}
但是,使用执行此程序后不会创建任何文件。它有什么问题?