link
compilers/gcc-compile

GCC Compile

Compile C/C++ source files

c
cpp
compile

Command

gcc

Explanation

GCC (GNU Compiler Collection) is used to compile C and C++ programs.

Examples

Compile C program

gcc hello.c -o hello

Compile with warnings and debug info

gcc -Wall -g program.c -o program

Compile C++ program

g++ hello.cpp -o hello