次のようなコードがありました。
std::vector <std::string> info;
info.push_back("10");
info.push_back("this is a line to print");
std::ofstream myfile;
myfile.open("list.txt");
myfile<<"first*"<<info[0]<<"\n";
これはうまくいきましたが、ファイルを作成して情報を出力しますが、これを次のように変更すると:
std::vector <std::string> info;
info.push_back("10");
info.push_back("this is a line to print");
std::ofstream myfile;
myfile.open("Output\\list.txt");
myfile<<"first*"<<info[0]<<"\n";
ファイルを作成しますが、ファイルに出力しようとするとすぐにすべてがクラッシュします。Windows 8 で GNU gcc コンパイラで code::blocks を使用しています。