2.6.Defining Constants #

Constant used for stored any values like variable, but constant can not change any values while the process executed.

There are two simple ways in C++ to define constants such:

  • Define Constant
  • Memory Constant

Suggest Edit