how do I replace each character the user types as a '*' instead of displaying it on the console in a PLATFORM INDEPENDENT way? Is there a way to do it with the standard libraries?
You might be able to get a single character, and cout << "\b*" (\b is for backspace)
Its not really very good solution, but i cant think of anything else.