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

Explain the following in c++

1. Variables 2. Identifiers 3. Data types 4. modifiers 5. Escape Characters

12th Apr 2019, 8:43 AM
Kheng Nab
Kheng Nab - avatar
1 Answer
+ 5
1. Containers for data. 2. Names used to identify a variable, class, function etc. 3. Specifies which type of value a variable can store. 4. Keywords (unsigned, signed, long, short) used to change the properties of data type. 5. Sequence of characters started with backslash, which is translated into another character (e.g. "\n" translates into new line).
12th Apr 2019, 9:07 AM
Aleksander Szczepura
Aleksander Szczepura - avatar