On 25-Jul-99 Trevor Wilson wrote:
> How can I compile programs I write in C or C++?

The command for the C compiler is gcc and the command for the C++ compiler is
g++.  A simple program with one source code file can usually be compiled with
just 'gcc <filename>' (or 'g++ <filename>') which will produce a binary called
a.out.  Read gcc's man page for more info. :)


-Tom

Reply via email to