int main () { ofstream myfile ; myfile . open ( "example.txt" ); myfile << "Writing this to a file. \n " ; myfile . close (); return 0 ; }
Testing include-codes.
int main () { ofstream myfile ; myfile . open ( "example.txt" ); myfile << "Writing this to a file. \n " ; myfile . close (); return 0 ; }