Variables
A variable is a container (storage area) used to hold data. Each variable should be given a unique name (identifier).
int a=2;
Here a is the variable name that holds the integer value 2. The value of a can be changed, hence the name variable.
There are certain rules for naming a variable in C++ Programming Language
1. Can only have alphabets, numbers and underscore.
2. Cannot begin with a number.
3. Cannot begin with an uppercase character.
4. Cannot be a keyword defined in C++ language (like int is a keyword).
#C++
#What are variables?
#What is the Use of Variables?
#Benefits of Variables?
#Uses of variables in C++ Programming Language