Search code examples
eclipseconsoleeclipse-cdtoutput

Eclipse C++ see output only when debugging


I've created c++ "Hello World" sample project in eclipse using "cygwin GCC" Toolchain.

Project Compiles and run.The problem is that I don't see my "Hello World" Output in console below.

The Interesting fact is when I run my project in "Debug" mode , I do see an output after I execute :

    cout << "!!!Hello World!!!" << endl; 

How can I see my console output in simple "Run mode" ? I'm Using Eclipse Juno...


Solution

  • Thanks @einpoklum , following your links I've found a solution !

    Make sure to run Eclipse as Administrator ! That's it :)

    Of course if it still doesn't work , refer to @einpoklum answer.