Linker

Applies to: cpp, c, fortran, general

A linker combines compiled object files and libraries into an executable, resolving symbols used across files.

g++ main.o utils.o -o app

See also: compiler, translation-unit