What is variable ?
Expecting good answer !
Answers
Answered by
5
In simple, You can remember Variable as a named memory location.
Syntax: <datatype><variable>
Ex: int a;
You can also assign a value to the variable.
int a = 10;
Hope this helps!
Syntax: <datatype><variable>
Ex: int a;
You can also assign a value to the variable.
int a = 10;
Hope this helps!
Answered by
3
✮storage location paired with an associated symbolic name, is called the variable.
_____________________________________________
☆variable contains some known or unknown quantity of information referred to as a value. .
_____________________________________________
☆variable contains some known or unknown quantity of information referred to as a value. .
Similar questions