linux - Ascii value of Enter Key in C - Unix - Stack Overflow
The enter key itself doesn't have an ASCII character, it has a scan code. '\n' is the ASCII line-ending for UNIX, "\r\n" on Windows, and '\r' on Mac. The scan code is a hardware-specific number which gets translated by the application into...