Ubuntu – Geany compiler , c programming, Ubuntu 14.04, can’t show program output

compilinggeany

I wrote a simple program to print "hello world".
The compiler shows a message "Compilation finished successfully".
But the out put of the program, I can't see anywhere.

As using codeblocks a new terminal comes out with the program output.
How can I see the program output using geany compiler.

Best Answer

  1. Open your "hello world" program in Geany.

  2. From the Geany menu select Build -> Build. A new executable file will be created in the same directory as your source code.

  3. From the Geany menu select Build -> Execute. A new window with the title Terminal will appear with the "hello world" program output.

Related Question