What is the difference between getch() and getche() in C programming?
getch() and getche() both are non standard functions present in conio.h header file.
getch() reads a single character from keyboard and displays the entered character without using enter key , it doesnot buffer any.
getche() reads a single character from the keyboard and displays immediately on output screen without waiting for enter key.