File Stream C++ Tutorial

#include 
int main () {
  ofstream examplefile ("test.txt");
  
  if (examplefile.is_open())
  {
    examplefile << "This is a line.\n";
    examplefile << "This is another line.\n";
    examplefile.close();
  }
  return 0;
}