私はチュートリアルWebを介してC++でファイルIOを学習しようとしていて、次のコードに出くわしました。
では、出力ファイルの場所を指定するにはどうすればよいですか?コードを実行してファイルの場所を検索しようとしましたが、機能しませんでした。
ありがとうございました。
ofstream myfile ("InOutExample.txt");
if (myfile.is_open())
{
myfile << "This is a line.\n";
myfile << "This is another line.\n";
myfile.close();
}
else cout << "Unable to open file";
return 0;
system("pause");