file c++ 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: how to read and write in a file c++
#include <iostream>
#include <fstream>
using namespace std;
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;
Example 3: file c++
#include <iostream>
#include <string>
#include <fstream>
int main () {
std::string line;
std::ofstream myfileWrite;
std::ifstream myfileRead;
myfileWrite.open("example.txt");
myfileRead.open("example.txt");
myfileWrite << "Writing this to a file.\n";
while (getline(myfileRead,line)){
std::cout << line << '\n';
}
myfileWrite.close();
myfileRead.close();
return 0;
}