The include and using compiler directives

The code fragment in Listing 1 shows the include and using compiler directives.

#include <iostream>

using namespace std;

Listing 1

These compiler directives are peculiar to C++.

Most C++ programs will contain one or more such compiler directives.