15-09-16, 12:07 AM
آآآآآآآآآآآآآسف جداً
ظننت المشاركة في قسم VB
PHP كود :
#include <iostream>
#include <fstream>
#include <cstdlib>
#include <string>
using namespace std;
int main() {
string filename = "test.txt";
// Write to File
ofstream fout(filename.c_str()); // default mode is ios::out | ios::trunc
if (!fout) {
cerr << "error: open file for output failed!" << endl;
abort(); // in <cstdlib> header
}
fout << "apple" << endl;
fout << "orange" << endl;
fout << "banana" << endl;
fout.close();
// Read from file
ifstream fin(filename.c_str()); // default mode ios::in
if (!fin) {
cerr << "error: open file for input failed!" << endl;
abort();
}
char ch;
while (fin.get(ch)) { // till end-of-file
cout << ch;
}
fin.close();
return 0;
}
ظننت المشاركة في قسم VB
سبحان الله والحمدلله ولا إله إلا الله والله أكبر
اللهم اغْفِرْ لِلمؤمنين والمؤمنات والمسلمين والمسلمات الأحياء منهم والأموات


