I have a very simple code:
char character;
std::cin >> character;
However, I would like it to behave as follow:
- Don't echo to console the character I type
std::cin
should return (unblock) right away when a character is pressed without having to press the Enter key
Is this possible? I also have access to Qt.