A.1 — Static and dynamic libraries « Learn C++
A library is a package of code that is meant to be reused by many programs. Typically, a C++ library comes in two pieces: 1) A header file that defines the functionality the library is exposing (offering) to the programs using it. 2) A precompiled binary ...