0% found this document useful (0 votes)
167 views1 page

C++ Variables

The document discusses C++ variables including declaring variables of different data types like int, double, char, string, and bool. It demonstrates assigning values to variables, displaying variables using cout, adding variables together using operators, and testing knowledge with exercises.

Uploaded by

Paul Arion
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
0% found this document useful (0 votes)
167 views1 page

C++ Variables

The document discusses C++ variables including declaring variables of different data types like int, double, char, string, and bool. It demonstrates assigning values to variables, displaying variables using cout, adding variables together using operators, and testing knowledge with exercises.

Uploaded by

Paul Arion
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
Download as pdf or txt
You are on page 1/ 1

Dark code

 HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP BOOTSTRAP   


 Tutorials  References  Exercises  Sign Up Get Certified Create Website Log in

C++ Tutorial
C++ HOME
C++ Intro
C++ Get Started Con,dențialitate, protecție și  ADVERTISEMENT

C++ Syntax performanță de excepție doar


C++ Output cu soluții de securitate Bitdefender. DETALII AICI!

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

int myNum = 15;


C++ Examples cout << myNum; Get certified
C++ Examples by completing
C++ Compiler Try it Yourself » a C++
C++ Exercises
course today!
C++ Quiz
C++ Certificate You can also declare a variable without assigning the value, and assign the value w3
school
s

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

int myNum = 15;  // myNum is 15


myNum = 10;  // Now myNum is 10
cout << myNum;  // Outputs 10

Try it Yourself »

ADVERTISEMENT

-30% -49%

Other Types
A demonstration of other data types:

Example

int myNum = 5;               // Integer (whole number without


decimals)
double myFloatNum = 5.99;    // Floating point number (with decimals)
char myLetter = 'D';         // Character
string myText = "Hello";     // String (text)
bool myBoolean = true;       // Boolean (true or false)

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

int myAge = 35;


cout << "I am " << myAge << " years old.";

Try it Yourself »

Add Variables Together


To add a variable to another variable, you can use the + operator:

Example

int x = 5;
int y = 6;
int sum = x + y;
cout << sum;

Try it Yourself »

C++ Exercises

Test Yourself With Exercises

Exercise:
Create a variable named myNum and assign the value 50 to it.

Submit Answer »

Start the Exercise

‹ Previous Next ›

ADVERTISEMENT ADVERTISEMENT

Report Error Spaces Upgrade Newsletter Get Certified

Top Tutorials Top References Top Examples Get Certified


HTML Tutorial HTML Reference HTML Examples HTML Certificate
CSS Tutorial CSS Reference CSS Examples CSS Certificate
JavaScript Tutorial JavaScript Reference JavaScript Examples JavaScript Certificate
How To Tutorial SQL Reference How To Examples Front End Certificate
SQL Tutorial Python Reference SQL Examples SQL Certificate
Python Tutorial W3.CSS Reference Python Examples Python Certificate
W3.CSS Tutorial Bootstrap Reference W3.CSS Examples PHP Certificate
Bootstrap Tutorial PHP Reference Bootstrap Examples jQuery Certificate
PHP Tutorial HTML Colors PHP Examples Java Certificate
Java Tutorial Java Reference Java Examples C++ Certificate
C++ Tutorial Angular Reference XML Examples C# Certificate
jQuery Tutorial jQuery Reference jQuery Examples XML Certificate

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.

Copyright 1999-2023 by Refsnes Data. All Rights Reserved.


W3Schools is Powered by W3.CSS.

You might also like