Header files contain C code, filenames, end in .h
Where have we seen these before?
- The files we’ve been including, example:
For system headers, we use
#include <file.h>
For local headers that we write:
#include "file.h"
Quote indicate the file is local, angle brackets indicate
it is installed on your system!