1837193 Members
2643 Online
110114 Solutions
New Discussion

Compile the c-programm

 
SOLVED
Go to solution
Johan Barelds
Frequent Advisor

Compile the c-programm

Hi all!

Thanks for all your replies!
Bill: can you give a short clue how to compile your script? I am not so in the c-compiling world..:-)

Thanks!

Grz. Johan
Make my day..:-)
2 REPLIES 2
James R. Ferguson
Acclaimed Contributor
Solution

Re: Compile the c-programm

Hi:

Given a C program named 'myprog.c' to compile it producing the executable 'myprog' do:

# cc myprog.c -o myprog

The '-o' argument specifies the object file name. The default is 'a.out'.

Regards!

...JRF...
Johan Barelds
Frequent Advisor

Re: Compile the c-programm

Thanks!
Make my day..:-)