C variable categories
Pritesh2013-11-17T21:28:46+05:30
Variable Can be categorized depending on Type of Data it stores inside -
- Variable Storing Integer Data Type is called as “Integer Variable“.
- Variable Storing Character Data Type is called as “Character Variable“.
- Variable Storing Float Data Type is called as “Float Variable“.
- Variable Storing Double Data Type is called as “Double Variable“.

Variables can be categorized depending on Number of Variables it can store -
- Variable storing single value at a time of any data type is called as “Normal or Ordinary” Variable.
- Variable Storing multiple values of same data type is called as “Array“.
- Variable Storing multiple values of different data type is called as “Structure” [ User defined data type]
