I am working on an existing C++/MFC Windows program, and I would like to get the console for text output. I found no option for that.
Can I set an option to get a console window from a C++/MFC program without redoing the project from scratch?
Can I avoid using the AllocConsole() function call, and just set the project options?
In case I must use AllocConsole(), where can I call it? I have no main() function in the program, so I do not know which is the entry point.