const declaration and use 
nconst float PI = 3.1416;
nconst int currentYear = 2000;
nOnce declared, a const variable can be used in any C++ statement in place of the number it represents.
nCircum = 2 * PI * radius;
nAge = currentYear – YearOfBirth;
n