C++ Variables
C++ Variables are the names given to memory locations. It is used to store any data type value. We can say that variables are the containers to store any value (information) within the program. For example int age =27; where age is an integer type variable while float area= 16.8; is a floating-point variable. … Read more