Constants in CPP (C Plus Plus)

Constants in CPP (C Plus Plus)

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;

Example with the const keyword

 2.    By using #define Preprocessor keyword 

Syntax: 
#define constant_name;
Example with #define keyword