Here is an example for your purpose: #include <stdio.h> #include <termios.h> int main(void) { int c; struct termios tty, oldtty; printf("Hello word!\n"); tcgetattr(0, &tty); oldtty = tty; tty.c_lflag &= ~ICANON; // disable canonical input tty.c_lflag &= ~...