Crossware

Table of Contents        Previous topic       Next topic       

C COMPILER LIBRARY FUNCTIONS->Detailed Descriptions->fgetc()

Summary

#include <stdio.h>


int fgetc(FILE* stream);     Read a character from stream


Parameter

stream    Pointer to FILE structure


Description

A single character is read from the input stream.  The only input stream supported is stdin.


Return Value

The return value is the character read or EOF if an error occurred.