tinettim@xxxxxxxx wrote:
At the command line I can type help to get a list of topics but they scroll of the screen so I can't see them all and I can't find their explanations on your web site. What command do I use to get it to compile? Source? What directory should I be in when I compile and what subdirectories should I have.
gcc --help | more
Simple C program in hello.c would be compiled into an executable called 'program' like this....
gcc -o program hello.c
--
Brian