cpp write to text file code example
Example 1: 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 2: write in file cpp
#include <iostream>
#include <fstream>
using namespace std;
int main() {
fstream my_file;
my_file.open("my_file.txt", ios::out);
if (!my_file) {
cout << "File not created!";
}
else {
cout << "File created successfully!";
my_file << "Guru99";
my_file.close();
}
return 0;
}
Example 3: file reading c++
int a, b;
ifstream bd;
myfile.open("file.txt");
if (myfile.is_open())
while (bd >> a >> b)
cout << a << b << endl;
else cout << "ERROR";