Symbolic constants and constant qualifiers in C++ programming
Symbolic constant is a quantity which does not change during the execution of the program. Constant qualifiers are keywords used to define a quantity as symbolic constant. The qualifiers are
1) const.
2) enum.
steps and rules:
1) Const must be initialized.
2) Const is local to the function where it is declared.
3) By the qualifier extern along with const, it can be made global.
4) If data type is not given it is treated as integer.