c++ variables | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

c++ variables

what does the numbers mean

3rd Oct 2018, 6:28 PM
Haley Melton
Haley Melton - avatar
6 Answers
0
What exactly is your question?
3rd Oct 2018, 6:56 PM
HonFu
HonFu - avatar
0
i don't understand how do you finger out that a = 35
3rd Oct 2018, 7:24 PM
Haley Melton
Haley Melton - avatar
0
my question is. is their a sort of math related
3rd Oct 2018, 7:25 PM
Haley Melton
Haley Melton - avatar
0
The sign = does not mean what it means in math class! You use it to give numbers, that you want to use later, a name. a=35 means: "From now on, the name of the number 35 shall be 'a'!" Later, when you want to use the number, you can just write a instead, for example: a + 5 (Answer is 40.)
3rd Oct 2018, 7:33 PM
HonFu
HonFu - avatar
0
The "=" equal sign in c++ is an assignment operator. It is used to assign the value of any variable
24th Oct 2019, 2:28 AM
Tom
Tom - avatar
0
You can assign a value to a variable by using "=" As HonFu explained, if you assign a value to a variable, you can call it whenever required. so, if you define a variable and give it a value, the variable will hold the value. You can understand further about the variable types here https://www.tutorialspoint.com/cplusplus/cpp_variable_types.htm
12th Dec 2023, 5:51 AM
Swadin
Swadin - avatar