WHAT are CONSTANTS?
The difference between variables and constants is that variables can change their value at any time but constants can never change their value.
Tips for Constant variable
- Constants are also called literals.
- Constants can be any of the data types.
- It is considered the best practice to define constants using only upper-case names.
There are two methods for a constant variable in C++
1. By using the const keyword
Syntax:
const type constant_name;
const type constant_name;
Example with the const keyword