Eclipse CDT Debug console not displaying program output - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T04:42:03Z http://stackoverflow.com/feeds/question/888241 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/888241/eclipse-cdt-debug-console-not-displaying-program-output 1 Eclipse CDT Debug console not displaying program output bhadra 2009-05-20T14:25:31Z 2009-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&amp;package%5Fid=241304&amp;release%5Fid=532062" rel="nofollow">MinGW GCC 4.2.1</a> and <a href="http://sourceforge.net/project/downloading.php?group%5Fid=2435&amp;filename=gdb-6.8-mingw-3.tar.bz2&amp;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#1450550 0 Answer by jolyon for Eclipse CDT Debug console not displaying program output jolyon 2009-09-20T07:55:57Z 2009-09-20T07:55:57Z <p>//have you put endl at the end of your output?</p> <p>int main() {</p> <pre><code>cout &lt;&lt; "!!!Hello World!!!"; // prints nothing to console ; no endl cout &lt;&lt; "!!!Hello World!!!" &lt;&lt; endl; // prints !!!Hello World!!! twice return 0; </code></pre> <p>}</p>