HOME C C++ PYTHON JAVA HTML CSS JAVASCRIPT BOOTSTRAP JQUERY REACT PHP SQL AJAX JSON DATA SCIENCE AI

C++ Variables

Definition:

Variables in C++ is a name given to a memory location. It is the basic unit of storage in a program.

  • The value stored in a variable can be changed during program execution.

  • A variable is only a name given to a memory location, all the operations done on the variable effects that memory location.

  • In C++, all the variables must be declared before use.

How to declare Variables ?


A variable name can consist of alphabets(both upper and lower case),numbers and the underscore ‘_’ character.However,the name must not start with a number.

Rules for declaring variables