제목 : 파일에서한문자읽기(fgetc)\파일에서한문자읽기(fgetc).c
#include <stdio.h>
void main(void)
{
FILE *objFile;
int c;
if(NULL == (objFile = fopen("C:\\Test.txt", "r")))
{
puts("파일 읽기 실패...");
}
else
{
//한 문자 읽기
c = fgetc(objFile);
printf("%c를 파일로부터 가져옴.\n", c);
fclose(objFile);
}
}