Preprocesses and compiles C and C++ source files, then assembles and links them together.
gcc {{source1.c}} {{source2.c}} -o {{executable}}
gcc {{source.c}} -Wall -Og -o {{executable}}
gcc {{source.c}} -o {{executable}} -I{{header_path}} -L{{library_path}} -l{{library_name}}
gcc -S {{source.c}}
gcc -c {{source.c}}