File Stream C++ Tutorial

#include 
#include 
using namespace std;
int main()
{
  ofstream out("test.txt"); // output, normal file
  if(!out) {
    cout << "Cannot open test.txt file.\n";
    return 1;
  }
  out << "R " << 9.9 << endl;
  out << "T " << 9.9 << endl;
  out << "M " << 4.8 << endl;
  out.close();
  return 0;
}