snipplets.dev/code/C++/write_to_file.cpp

11 lines
191 B
C++
Raw Normal View History

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