getc macro — Reads a character
int getc(FILE* stream)
The getc macro reads a character from stream and returns that character as an unsigned char. The return value is EOF for end-of-file or a read error.
getc
stream
unsigned
char
EOF
fgetc function, getchar macro, putc macro