using fstream in c++ code example
Example 1: c++ files
#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;
}
Example 2: opening file in c++
/ fstream::open / fstream::close
#include <fstream>
int main () {
std::fstream fs;
fs.open ("test.txt", std::fstream::in | std::fstream::out | std::fstream::app);
fs << " more lorem ipsum";
fs.close();
return 0;
}
Example 3: how to open an input file in c++
#include <fstream>
ifstream file_variable;
file_variable.open("input.txt");
file_variable.close();
_____________________________________________________
while (cin >> name >> value)
{
cout << name << value << endl;
}
_____________________________________________________
ofstream out_file;
out_file.open("output.txt");
out_file << "Write this scentence in the file" << endl;