// basic file operations
#include <iostream>
#include <fstream>
using namespace std;
int main () {
ofstream myfile;
myfile.open ("example.txt");
myfile << "Writing this to a file.
";
myfile.close();
return 0;
}
#include <iostream>
#include <string>
#include <fstream> //write and read
//#include <ifstream> //read
//#include <ofstream> //write
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.
";
while (getline(myfileRead,line)){
std::cout << line << '
';
}
myfileWrite.close();
myfileRead.close();
return 0;
}
#include <fstream>
/*
ofstream Creates and writes to files
ifstream Reads from files
fstream A combination of ofstream and ifstream: creates, reads, and writes to files
*/
int main() {
// Create and open a text file
ofstream MyFile("filename.txt");
// Write to the file
MyFile << "Files can be tricky, but it is fun enough!";
// Close the file
MyFile.close();
}
#include <iostream>
#include <fstream>
using namespace std;
class person{
public:
string wife , son , mother;
int brothers_num , sisters_num;
};
int main()
{
person Ahmed;
Ahmed.wife = "Aya";
Ahmed.son = "Badr";
Ahmed.mother = "Fatma";
Ahmed.brothers_num = 2;
Ahmed.sisters_num = 2;
fstream new_file;
new_file.open("database.txt" , ios::out );
if(new_file.fail()){
cout<<"can't open the files
";
}
new_file.write((char*)&Ahmed , sizeof(Ahmed));
new_file.close();
person Khaled;
new_file.open("database.txt" , ios::in);
new_file.read((char*)&Khaled , sizeof(Khaled));
new_file.close();
cout<<Khaled.wife;
return 0;
}
#include <iostream>
#include <fstream>
fstream afile;
afile.open("file.dat", ios::out | ios::in );