Re: Accepting text from keyboard without displaying it on screen.
"J. Campbell" <mango_maniac@y ahoo.com> wrote...[color=blue]
> Is this possible using standard c++?[/color]
Nope. There is no "keyboard" or "screen" concepts
in the Standard C++. You would have to use some kind
of OS-specific means (like responding to events or
installing some interrupt handler or...)
Comment