Answers for "How to save C++ program output in a text file"

C++
17

how to output to a file in c++

// basic file operations
#include <iostream>
#include <fstream>
using namespace std;

int main () {
  ofstream myfile;
  myfile.open ("example.txt");
  myfile << "Writing this to a file.\n";
  myfile.close();
  return 0;
}
Posted by: Guest on November-09-2019

Code answers related to "How to save C++ program output in a text file"

Browse Popular Code Answers by Language