#include <stdio.h> int fgetc(FILE *file);
Returns the next character in the given file as an unsigned char.
The given char (value 0..255) or EOF
at end-of-file.
ANSI, POSIX
int c; while((c=fgetc(stdin)) != EOF) fputc(c, stdout);
Go to the first, previous, next, last section, table of contents.