We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Is there a way to prevent getchar from echoing the input characters? I tried to write my own implementation of getchar, but the linker doesn't seem to let me do that. - Mike
"I wanted to be able to use scanf without the echo. It seems like the only way is to replace getchar..." Why not use _getkey to read into a buffer, and then sscanf?