#include <stdio.h>
int main0801(){
FILE *f;
// Modes : r w a?
f=fopen("G:\\Godoro\\Product\\Examples\\C-Cpp\\CFundementals\\In.txt","r");
if(f==NULL){
printf("Dosya a��lamad�.\n");
}
char c=fgetc(f);
while(c!=EOF){
printf("%c",c);
c=fgetc(f);
}
fclose(f);
printf("\n\nBitti.\n");
return 0;
}
Dosyayı İndir