I'm not quite understand this lesson here, anybody mind to explain please!? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

I'm not quite understand this lesson here, anybody mind to explain please!?

29th Jul 2018, 7:24 PM
Jensen
Jensen - avatar
5 Answers
+ 5
It helps linking the lesson. You should also describe how to get there or enough details so we know we got the right one.
29th Jul 2018, 7:49 PM
John Wells
John Wells - avatar
+ 3
Hi Jensen Please state a clear question: https://www.sololearn.com/discuss/1316935/?ref=app For example: • What language • Which lesson TIP - You can easily insert the lesson in your post by copy and pasting the link of the lesson
29th Jul 2018, 7:49 PM
Agent
Agent - avatar
+ 3
Summary: Variables are stored in memory Variables need to have a declared data type and an identifier Data type are used to select the type of data you are using For example: An integer is a data type (built-in) An integers value is a whole number To define an integer use the key word int before the variable name There are many other data types such as: char - for only one character int - for whole numbers double - Alows decimal numbers etc. Next, the identifier is just the name of a variable You can name a variable what you want but has to have no spaces and other charachters you cant used are mentioned in the lesson. Identifiers (variable names) go after the data type defined For example: int number1 = 5; double myVariable5 = 13.3532; Hope this helps Jensen
29th Jul 2018, 10:49 PM
Agent
Agent - avatar
+ 1
https://www.sololearn.com/learn/CPlusPlus/1606/ there it is right here, its about the variables , language c++
29th Jul 2018, 10:32 PM
Jensen
Jensen - avatar
0
it does help thanks to you
30th Jul 2018, 7:28 PM
Jensen
Jensen - avatar