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

getchar

Syntax
#include <cstdio>
int getchar( void );

The getchar() function returns the next character from stdin, or EOF if the end of file is reached.

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