Variable Declaration | create a variable | How variable declare
Variable Declaration: The process in which we create a variable for store the data is called variable declaration. Or To assign a name of variable to store the data is called variable declaration. This process consists on these steps:- 1. Give the data type 2. Give name to the variable 3. Assign the value (in case of solid coded variable) Give the type: We assign a data type according to our need. There is many data type which we used as per our requirement. To assign data type is very important and sensitive issue, because if we assign a wrong or invalid data type then the value store in the value may disturb or distort.int, float and char are the examples of the data type. Give name:...