Mega Code Archive

 
Categories / C++ Tutorial / File Stream
 

Save string double pair to file

#include <iostream> #include <fstream> 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; }