#include #include using namespace std; int main () { ofstream myfile; myfile.open ("file.txt"); myfile << "Writing to a file.\n"; myfile.close(); return 0; }