Functions HI-TECH C FGETC

Revision as of 19:36, 31 July 2017 by Kumokosi (talk | contribs) (Created page with "<strong>FGETC</strong> ==SYNOPSIS== #include <stdio.h> int fgetc(FILE * stream) ==DESCRIPTION== <strong>Fgetc</strong>() returns the next character from the inpu...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

FGETC

SYNOPSIS

#include  <stdio.h>

int fgetc(FILE * stream)


DESCRIPTION

Fgetc() returns the next character from the input stream. If end-of-file is encountered EOF will be returned instead. It is for this reason that the function is declared as int. The integer EOF is not a valid byte, thus end-of-file is distinguishable from reading a byte of all 1 bits from the file. Fgetc() is the non-macro version of getc().

SEE ALSO

fopen, fclose, fputc, getc, putc