How do I compile a C program (thats what .c is right?) under linux?
hjack
edit:
Okay, figured out that I don't have gcc. How do I get it and install it.
hjack
Printable View
How do I compile a C program (thats what .c is right?) under linux?
hjack
edit:
Okay, figured out that I don't have gcc. How do I get it and install it.
hjack
to get gcc goto http://gcc.gnu.org/ there is an installation guide there as well.
to compile programs if the program is hello.c type
gcc -o hello hello.c
Cytex