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


getch

Syntax

#include <conio.h>

int     getch(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 not echoed to the screen.

Return Value

The character.

Portability

not ANSI, not POSIX


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