Giriş
Şu satırı dahil
ederiz.
#include <stdio.h>
FILE *'dan okuma yapar. Bu metodun tersi putc() metodudur.
Örnek
Elimizde şöyle bir kof
olsun.
FILE *fp=fopen("first.txt","r");
Şöyle
yaparız.
int x = getc(fp);
if (x == EOF) {
fputs("Error reading from file.\n", stderr);
} else {
printf("%d\n",x);
}
Hiç yorum yok:
Yorum Gönder