The include directive

Purpose of the include compiler directive is to cause the system to find and to include the source code for various prewritten library functions in your source code before attempting to compile your program.

The code in Listing 1 causes a set of functions necessary to support standard input/output to be located and inserted into the program before an attempt is made to compile the program.

The set of functions is identified as:

<iostream>