cc
system C compiler
TLDR
This command is an alias of gcc.
SYNOPSIS
cc [options] files...
DESCRIPTION
cc is traditionally the system C compiler command. On most Linux systems, it is a symbolic link or alias to gcc (GNU Compiler Collection).
Using cc in build scripts provides portability across systems where different compilers may be the default.
