I wrote a simple c program. saved it with "c" suffix. Went to the terminal (in Linux Mint), typed in

gcc -o outputfile inputfile.c

In the directory containing inputfile.c a file called outputfile appeared, as I expected. I want to run the program, but clicking on the file does nothing.

What am I doing wrong?

link|improve this question

6  
Does it do something if you type ./outputfile at the command-line? – Oli Charlesworth May 11 '11 at 16:18
feedback

1 Answer

up vote 2 down vote accepted

The program is running, but you're not seeing its output because the terminal isn't open. Open up your terminal and run it with ./outputfile

If your program opened a window, you would see it by clicking on the file.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.