#include <stdio.h> #include <stdlib.h>
- Header files typically contain declarations (not the implementation) of functions
- stdio.h has declarations of standard i/o functions such as: printf and scanf
- stdlib.h has declarations of other C library functions such as: malloc, free, exit, rand, etc.