Hi.
I'm trying to code a c++ console program which has a login system in the begining. I would want to hide the characters the user entered when they are typing in their password. How do i do that?
2007-04-16
19:17:52
·
6 answers
·
asked by
cincauhangus
2
in
Computers & Internet
➔ Programming & Design
an example:
my current login now displays this and the user enters their username and password:
Username : myUsername
Password : myPassword
But I want it to display like this:
Username: myUsername
Password: **********
How do i do that in C++ console?
2007-04-16
19:43:36 ·
update #1
an example:
my current login now displays this and the user enters their username and password:
Username : myUsername
Password : myPassword
But I want it to display like this:
Username: myUsername
Password: **********
How do i do that in C++ console?
2007-04-16
19:43:37 ·
update #2