Go to the first, previous, next, last section, table of contents.


getche

Syntax

#include <conio.h>

int getche(void);

Description

A single character from the console (stdin) is returned. The input is not line-buffered. If there is a character pending from section ungetch, it is returned instead. The character is echoed to the screen.

Return Value

The character.

Portability

not ANSI, not POSIX


Go to the first, previous, next, last section, table of contents.