#include<iostream>
#include<fstream>
using namespace std;
int main()
{
string a("hehe.txt");
ofstream aa;
aa.open(a.c_str());
aa<<"hehe"<<endl;
aa.close();
return 0;
}
上記のように、メイン ファイルのみを含む単純なプロジェクトを VS 2010 で作成します。「hehe.txt」はどこに保存されているのだろうか?プロジェクト内で見つけることができませんでした。