Variable in C
Variable is like a container (storage space) with a name in which you can store data. It is a way to represent memory location through symbol so that it can be easily identified. The syntax to declare a variable is: Data type variable_name; The example of declaring the variable is given below: int a;float b;char […]