tags:

views:

52

answers:

1
gcc -o program program.c `pkg-config --libs --cflags gtk+-2.0`

When I run the program, it show both the GUI and the terminal. How can I hide the terminal?

+1  A: 

You can double click on the executable named "program". Then you will not see the terminal.

Andreas Tunek
I have the same problem as he describes - launching the program this way is what's causing the problem, not the solution to it.
Frxstrem