C++ Variables
C++ Variables
C++ Tutorial
C++ HOME
C++ Intro
C++ Get Started Con,dențialitate, protecție și ADVERTISEMENT
C++ Comments
C++ Variables
Declare Variables
C++ Variables
Declare Multiple Variables
‹ Previous Next ›
Identifiers
Constants
C++ User Input
C++ Data Types C++ Variables
C++ Operators
C++ Strings Variables are containers for storing data values.
C++ Math
In C++, there are different types of variables (defined with different keywords), for
C++ Booleans example:
C++ Conditions
C++ Switch int - stores integers (whole numbers), without decimals, such as 123 or -123
C++ While Loop double - stores floating point numbers, with decimals, such as 19.99 or
C++ For Loop -19.99
char - stores single characters, such as 'a' or 'B'. Char values are surrounded
C++ Break/Continue
by single quotes
C++ Arrays
string - stores text, such as "Hello World". String values are surrounded by
C++ Structures
double quotes
C++ References
bool - stores values with two states: true or false
C++ Pointers
C++ Functions
C++ Functions
Declaring (Creating) Variables
C++ Function Parameters
To create a variable, specify the type and assign it a value:
C++ Function Overloading
C++ Recursion
Syntax
C++ Classes
C++ OOP type variableName = value;
C++ Classes/Objects
C++ Class Methods
C++ Constructors
Where type is one of C++ types (such as int ), and variableName is the name of the COLOR
C++ Access Specifiers
variable (such as x or myName). The equal sign is used to assign values to the PICKER
C++ Encapsulation variable.
C++ Inheritance
C++ Polymorphism To create a variable that should store a number, look at the following example:
C++ Files
C++ Exceptions
Example
C++ How To
Create a variable called myNum of type int and assign it the value 15:
Add Two Numbers
later:
3
CE
02
TI 2
R
FI .
ED
Example
Get started
int myNum;
myNum = 15;
cout << myNum;
Try it Yourself »
Note that if you assign a new value to an existing variable, it will overwrite the
previous value:
Example
ADVERTISEMENT
Try it Yourself »
ADVERTISEMENT
-30% -49%
Other Types
A demonstration of other data types:
Example
You will learn more about the individual types in the Data Types chapter.
Display Variables
The cout object is used together with the << operator to display variables.
To combine both text and a variable, separate them with the << operator:
Example
Try it Yourself »
Example
int x = 5;
int y = 6;
int sum = x + y;
cout << sum;
Try it Yourself »
C++ Exercises
Exercise:
Create a variable named myNum and assign the value 50 to it.
Submit Answer »
‹ Previous Next ›
ADVERTISEMENT ADVERTISEMENT
FORUM | ABOUT
W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials,
references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While
using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.