Table of Contents Previous topic Next topic
C LIBRARY FUNCTIONS->Detailed Descriptions->getche()
Summary
#include <conio.h>
int getche(void); Read a character from console and echo
Description
This function uses getch() to get a character from the console. The character read is then echoed to the screen.
Return Value
The return value is the character read. There is no error return.