Crossware

Table of Contents        Previous topic       Next topic       

C LIBRARY FUNCTIONS->Detailed Descriptions->getc()

Summary

#include <stdio.h>

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


Parameter

stream    Pointer to FILE structure


Description

A single character is read from the input stream.


Return Value

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