C++ language defines several files, called header files, which contain
information that is either necessary or useful to the program. An example of
these header files is
#include <iostream.h>
The iostream.h is a file that is used to support the C++ Input/Output (I/O) system. This file is provided with the compiler. In later chapters the header files will be discussed in more details.