Libraries
A library is a binary file that is compiled into a program.
An include file, or header file is a C/C++ file that describes functions without actually implementing them.
Structures can also be defined in a header file so that many source files can use them.
A function description in a header file is called a function prototype.
- Example: int add(int x, int y);