What are static libraries in “C” ?

Connor Brereton
4 min readOct 9, 2018

Some background context..

A static library is a single collection of object code files (created during the compilation process) that speeds up the creation of a program’s executable file, in particular, during the linking phase. However, they make files really large because the entire library is linked to the executable file unlike dynamic libraries that are mapped into the process…

--

--