C++ Constant is something that doesn't change. In C and C++ we use the keyword const to make program elements constant.
In C++, a constant is declared using the const keyword. Objects declared const have a modified type whose value cannot be changed; their values become read-only. Here is the best of both worlds: efficiency through passing arguments by reference and better encapsulation through const, which expose...