#include <iostream>
#include <fstream>
#include <locale.h>
using namespace std;
int main1001(){
setlocale(LC_ALL,"Turkish");
ifstream inf("F:\\Godoro\\Product\\Examples\\C-Cpp\\CppFundementals\\In.txt");
if(!inf){
cout<<"Dosya a��lamad�!";
}else{
cout<<"Dosya a��ld�."<<endl;
while(!inf.eof()){
//cout<<inf.get();
char s[100];
inf.getline(s,100);
cout<<"Okunan: "<<s<<endl;
}
inf.close();
cout<<"Dosya kapat�ld�."<<endl;
}
return 0;
}
Dosyayı İndir