Preprocess and compile C and C++ source files, then assemble and link them together. Part of GCC (GNU Compiler Collection). More information: https://gcc.gnu.org.
gcc path/to/source1.c path/to/source2.c ... -o|--output path/to/output_executable
gcc path/to/source.c -Wall -o|--output output_executable
gcc path/to/source.c -Wall -g|--debug -Og -o|--output path/to/output_executable
gcc path/to/source.c -o|--output path/to/output_executable -Ipath/to/header -Lpath/to/library -llibrary_name
gcc -S|--assemble path/to/source.c
gcc -c|--compile path/to/source.c
gcc path/to/source.c -O1|2|3|fast -o|--output path/to/output_executable
gcc --version