getch() in c language: getch() function prompts the user to press a character and that character is not printed on screen, getch header file is conio.h.
getch()
#include void main() { char ch; ... ... ch=getch(); //get a character input ... ... }
ASCII value of character input.
Available in Turbo C/C++.
Not available in New C/C++ Compilers.