NAME getc - read character from standard input SYNOPSIS c = getc (c) character c DESCRIPTION Getc reads the next character from the standard input. The character is returned in ascii format both as the functional return and in the parameter c. If the end of a line has been encountered, NEWLINE is returned. If the end of the file has been encountered, EOF is returned. If the input file is not ascii, characters are mapped into their corresponding ascii format. SEE ALSO getch, getlin DIAGNOSTICS None