C++でファイル出力

C++




C++ファイル出力

include

#include <fstream>

ファイルを開く

ofstream outputfile(“ファイル名.txt”);

ファイルに書き込む

outputfile << "ファイル出力成功!!" << endl;
outputfile << "Success" << endl;

ファイルを閉じる

outputfile.close();
タイトルとURLをコピーしました