- int getch(): Get character from console, no echoing
- int getche(): Get character form the console and echoes to screen
- int putch(int ch): Outputs character to the text window on the screen.
Returns ch, the character displayed.
- int ungetch(int ch): Push a character back to the keyboard.
On success, return the character ch.
On error, return value of EOF
Prototype in
- int getchar(): Get character from stdin
- int putchar(int ch): Outputs character on stdout
On error, it returns EOF.