Backspace(\b) not clearing text in Non-canonical mode termios
问题 i am trying to clear text by pressing the backspace key, i am using termios in non canonical mode. i have created a conditional statement that when the users press backspace it should remove the previous character by going one character back. But when i press Backspace instead of removing the character it prints ^? on that line. I don't want to use canonical mode. My Code: #include <stdio.h> #include <stdlib.h> #include <termios.h> #include <unistd.h> #include <sys/types.h> #include <string.h