Can someone describe me variables in c++ | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Can someone describe me variables in c++

Really confused in variables please help me I am a beginner and I am looking for help

12th Nov 2016, 9:34 AM
Alexander Miller
Alexander Miller - avatar
5 Answers
+ 18
you can think of a variable as a container that contains a value. Each variable in C++ has a specific type, which determines the size and layout of the variables' memory;the range of values that can be stored within that memory; and the set of operations that can be applied to the variables.There are different variable types including char(1 byte), int(4 bytes), float, double,etc. As you start writing more code, it would become clearer I am sure
12th Nov 2016, 12:47 PM
Nelli
Nelli - avatar
+ 5
Example A=2 A is the variable
21st Feb 2017, 1:55 AM
DeleteThisAccount
+ 1
Variable is the name of memory location allocated by the compiler depending upon the datatype of the variable.
14th Nov 2016, 11:08 AM
Samhita Joshi
Samhita Joshi - avatar
0
variable is a one type of container which contain only one value at one time.
29th Jan 2017, 9:34 AM
kishan
- 1
For example before processing raw materials are kept in some containers. Those containers are variables. After processing the finished products a re also kept in some container again these containers are variable. There will be different type of containers required for solid and liquid and gases. Similarly different data types are required to hold different types of data.
10th Dec 2016, 3:13 AM
Shiv Singh Sisodiya
Shiv Singh Sisodiya - avatar