snipplets.dev/code/C++/write_to_file.cpp
2024-12-08 16:00:30 +03:00

11 lines
191 B
C++

#include <fstream>
using namespace std;
int main() {
ofstream myfile;
myfile.open("example.txt", ios::in | ios::app);
myfile << "Сообщение\n";
myfile.close();
return 0;
}