- Get link
- X
- Other Apps
What is Variable?
- A name which can store a value. in other words, A variable is a container which can store a value and we can re-use that value using of variable.
- A name which can store a value. in other words, A variable is a container which can store a value and we can re-use that value using of variable.
- Variable Declaration and Initialization
Syntax of variable :
type variable name; example: int a, b;
type variable name; example: int a, b;
Initialization:
a = 10;b = 20;
a = 10;
b = 20;
Comments
Post a Comment