I need to read a password from standard input and wanted std::cin not to echo the characters typed by the user...
std::cin
How can I disable the echo from std::c
Only idea what i have, you could read password char by char, and after it just print backspace ("\b") and maybe '*'.