Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

C++ Numbers and Strings


Adding Numbers and Strings

WARNING!

C++ uses the + operator for both addition and concatenation.

Numbers are added. Strings are concatenated.

If you add two numbers, the result will be a number:

Example

int x = 10;
int y = 20;
int z = x + y;      // z will be 30 (an integer)
Run example »

If you add two strings, the result will be a string concatenation:

Example

string x = "10";
string y = "20";
string z = x + y;   // z will be 1020 (a string)
Run example »

If you try to add a number to a string, an error occurs:

Example

string x = "10";
int y = 20;
string z = x + y;