Command
gccExplanation
GCC (GNU Compiler Collection) is used to compile C and C++ programs.
Examples
Compile C program
gcc hello.c -o helloCompile with warnings and debug info
gcc -Wall -g program.c -o programCompile C++ program
g++ hello.cpp -o hello