12345678910111213
#include <iostream> #include <cmath> #include <fstream> using namespace std; int main() { ofstream myfile; myfile.open ("example.txt"); myfile << "Writing this to a file.\n"; myfile.close(); return 0; }
myfile.open ("example.txt",ios::app); //meaning append