#include <fstream> //βιβλιοθήκη για ifstream, ofstream
ifstream fin("input.txt"); // ανάγνωση
fin >> a >> b;
ofstream fout("output.txt"); // εγγραφή
fout << c << endl;
ofstream myout("file.txt", (ios::out | ios::app)); //Εγγραφή στο τέλος ενός αρχείου(Append)
myout << d << endl;
while (!fin.eof()) { //Έλεγχος για το τέλος του αρχείου
…
}
fin.close(); // Τερματισμός ροής ανάγνωσης
fout.close();// Τερματισμός ροής εγγραφής