Compile C programs in Linux
c99 – compile standard C programs 1. The following usage example compiles foo.c and creates the executable file foo: c99 -o foo foo.c The following usage example compiles foo.c and creates the object file foo.o: c99 -c foo.c The following usage example compiles foo.c and creates the executable file a.out: c99 foo.c The following usage …