Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to create an executable of my two mycode.c and my main.c, how can I create an executable? i did

gcc mycode.c main.c

and it generates a a.out, but when i click it it would not run.. (i am new to this so please bear with me)

Thank you

share|improve this question
3  
Try ./a.out on the commandline. – Ray Toal Aug 31 '11 at 4:35
^ Yes. Also look into Makefiles for making several different executables or when you have several interlinking dependencies. youtube.com/watch?v=o6x0EHAzCJc – Vinay Aug 31 '11 at 4:39

2 Answers

up vote 2 down vote accepted

Try this

gcc mycode.c main.c -o myprogram

Then run ./myprogram

If you double click it you probably won't see anything, you should instead try running it from the command line, where you compiled it from in the first place.

share|improve this answer
1  
Run using ./myprogram, not myprogram (from the directory you saved it in - I know you know that, Alex, just as he's confused) – gnometorule Aug 31 '11 at 5:12

Your a.out might not be executable yet.
do:
$> chmod 755 a.out
or
$> chmod a+x a.out
then try running it:
$> ./a.out

share|improve this answer
Not likely; gcc gives a.out execute permission. If you double-click an `a.out’ file (probably from Nautilus), it should execute it, but not in a terminal. – Keith Thompson Aug 31 '11 at 6:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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