C / conio.h / getche
cgets, clreol, clrscr, cprintf, cputs, cscanf, delline, getch, » getche, getpass, gettext, gettextinfo, gotoxy, highvideo, inport, insline, kbhit, lowvideo, movetext, normvideo, outport, putch, puttext, _setcursortype, textattr, textbackground, textcolor, textmode, ungetch, wherex, wherey, window,
Funcion: getche()
Sintaxis:
int getche(void);

Descripcion: Lee un solo carácter directamente desde el teclado, mostrando tal carácter en pantalla, a través de la BIOS o por directamente a vídeo.


Ejemplo:
#include <conio.h>
 
int main() {
   clrscr();
   cprintf( "Ejemplo de \"getch\"\r\n\r\n" ); 
   cprintf( "Pulsa una tecla: " );
   cprintf( "\'%c\'\r\n", getch() );
   cprintf( "Pulsa una tecla para continuar..." );
   getch();
 
   return 0;
}

Librerias C

Librerias ANSI C
   string.hcstring
   math.hcmath
   stdio.hcstdio
   time.hctime
   stdlib.hcstdlib
   ctype.hcctype
   locale.hclocale
   signal.hcsignal
   setjmp.hcsetjmp

Librerias Borland
   conio.h
   graphics.h