getchar()
Syntax:
#include <stdio.h> int getchar( void );
Description:
The getchar() function returns the next character from STDIN, or EOF if the end of file is reached.
Related Topics:
fputc(), fgetc(), putc(), fopen()
#include <stdio.h> int getchar( void );