How do I print on the output window in Visual C++? The project that I am working on isn\'t of a console window project type. That\'s when I build and run it, it doesn\'t ope
You can use OutputDebugString("..."); to print to the Output window of Visual Studio. You have to #include though.
OutputDebugString("...");
#include