#include <iostream>
#include <fstream>
int main() {
ofstream MyFile("filename.txt");
MyFile << "First line\n";
MyFile.close();
return 0;
}
Created
June 10, 2022 16:20
-
-
Save Irwin1985/f7370d0cf07bdb54bc4d85c69937431d to your computer and use it in GitHub Desktop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment