C++ Programming/Code/Standard C Library/Functions/fgetc

fgetc

Syntax
#include <cstdio>
int fgetc( FILE *stream );

The fgetc() function returns the next character from stream, or EOF if the end of file is reached or if there is an error.

Related topics
fopen - fputc - fread - fwrite - getc - getchar - gets - putc
Category:Book:C++ Programming#Code/Standard%20C%20Library/Functions/fgetc%20
Category:Book:C++ Programming