That didn't work. The output window appears, but nothing is printed.I just tested it (on linux) and it works fine.
Hm, if you're on windows you should read here: http://msdn.microsoft.com/en-us/library/ms682073%28VS.85%29.aspxTested on Vista and it works out of the box.
You need AttachConsole + a way to redirect stdout/stdin to the console... let google be your friend...
std::cout << "Test Message" << std::flush;
Note: Flush was necessary to see outputThat was it! Thanks.Codestd::cout << "Test Message" << std::flush;