Differentiate between functions getch () and getche ().
- Both functions accept a character input value from user.
- When getch () is used, key that was pressed won't appear on the screen. It's automatically captured and assigned to a variable.
- Whereas when getche () is used, key which was pressed by the user appears on the screen and is assigned to a variable.