#include <stdio.h> int main0802(){ FILE *f; f=fopen("G:\\Godoro\\Product\\Examples\\C-Cpp\\CFundementals\\In.txt","r"); if(f==NULL){ printf("Dosya a��lamad�.\n"); } char s[10]; while(!feof(f)){ if(fgets(s,10,f)){ printf("%s",s); } } fclose(f); printf("\n\nBitti.\n"); return 0; }Dosyayı İndir