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
"Where the tree of knowledge stands, there is always paradise": thus speak the oldest and the youngest serpents. - Friedrich Nietzsche
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
Forum Rules