assign multiple variables in C++
Code snippet on how to assign multiple variables in C++
int x = 5, y = 10, z = 15;
This code assigns the values 5, 10 and 15 to the variables x, y and z respectively. All three of these variables are of the data type int (which stands for integer, a number without a decimal point).
The equals sign (=) is used to assign the values to the variables. The first variable x is assigned the value 5, followed by y which is assigned 10, and z with 15.
After the assignment, x is now equal to 5, y is equal to 10, and z is equal to 15. This code can be used to assign multiple values to multiple variables in one line instead of writing separate lines of code for each variable.