#include <iostream>
#include <fstream>
#include <locale.h>
using namespace std;
int main1002(){
setlocale(LC_ALL,"Turkish");
ofstream outf("F:\\Godoro\\Product\\Examples\\C-Cpp\\CppFundementals\\Out.txt");
if(!outf){
cout<<"Dosya a��lamad�!";
}else{
cout<<"Dosya a��ld�."<<endl;
outf.write("AAAAAAAAAAA",6);
outf<<"BBB"<<endl;
outf<<123<<endl;
outf.close();
cout<<"Dosya kapat�ld�."<<endl;
}
return 0;
}
Dosyayı İndir