Eclipse CDT Debug console not displaying program output - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T04:42:03Zhttp://stackoverflow.com/feeds/question/888241http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/888241/eclipse-cdt-debug-console-not-displaying-program-output1Eclipse CDT Debug console not displaying program outputbhadra2009-05-20T14:25:31Z2009-11-30T06:00:02Z
<p>I am using <a href="http://www.eclipse.org/downloads/packages/eclipse-ide-cc-developers/ganymedesr2" rel="nofollow">Eclipse IDE for C/C++ Developers (Eclipse Ganymede Package - version 3.4.2)</a> on Windows XP with <a href="http://sourceforge.net/project/showfiles.php?group%5Fid=2435&package%5Fid=241304&release%5Fid=532062" rel="nofollow">MinGW GCC 4.2.1</a> and <a href="http://sourceforge.net/project/downloading.php?group%5Fid=2435&filename=gdb-6.8-mingw-3.tar.bz2&a=53789889" rel="nofollow">GDB 6.8-3</a>.</p>
<p>I am facing a problem very similar to that mentioned <a href="http://dev.eclipse.org/newslists/news.eclipse.tools.cdt/msg12971.html" rel="nofollow">here</a>. A simple hello world program will not print to the console output in the debugger. A run command displays the output correctly. I have checked both gdb output console and the output console.</p>
<p>What are the right settings to get the output in console window of eclipse?</p>
http://stackoverflow.com/questions/888241/eclipse-cdt-debug-console-not-displaying-program-output/1450550#14505500Answer by jolyon for Eclipse CDT Debug console not displaying program outputjolyon2009-09-20T07:55:57Z2009-09-20T07:55:57Z<p>//have you put endl at the end of your output?</p>
<p>int main()
{</p>
<pre><code>cout << "!!!Hello World!!!"; // prints nothing to console ; no endl
cout << "!!!Hello World!!!" << endl; // prints !!!Hello World!!! twice
return 0;
</code></pre>
<p>}</p>