|
C++: What is a header, and a namespace ! |
Objectives : |
#include <iostream> |
|
|
A header file, for example #include <iostream>, commonly contains declarations of various identifiers and sometimes executable statements. The intent is that in a common scenario the identifiers that need to be declared more than once in a source file can be placed in one header file, which is then referred by the source codes whenever its contents are required. |