how can i do that ? I tried a lots of thing with peek() and cin.get() with loop and I can not find a way to do not show the character in the screen :( anyone have an idea ?
Printable View
how can i do that ? I tried a lots of thing with peek() and cin.get() with loop and I can not find a way to do not show the character in the screen :( anyone have an idea ?
use a while loop with getch()
while(keypressed!=enter)
{
keypressed = getch();
mypass += keypressed;
cout<<"*";
}
They are not a way without using conio.h ?