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
This work fine for me. Have you declared your getchar exactly the same way as the one that is provided in the /LIB folder? Jon
It works for me as soon as I comment out all references to scanf. When scanf gets linked to the program, it references getchar, this is where the trouble starts. There is no point for me in having custom getchar without scanf. Everything is fine with _getkey and putchar. Obviously, these names are recognized by the linker and treated differently from other symbols. - Mike