In MSVC++ you can summon a console window to your app by running:
// Attach a console
AllocConsole() ;
AttachConsole( GetCurrentProcessId() ) ;
freopen( "CON", "w", stdout ) ;
Now printf
and cout
automatically go to that window.
Is it possible in MSVC++ to have more than one console window?