C variables

The variable is basically nothing but the name of a memory location we use to store data. We can change the value of a variable in C or any other language, and we can also reuse it multiple times. We use symbols in variables to represent the memory location- so that it becomes easily identifiable by any user.

Syntax:-

datatype variableName = value;

Example:-

int a=10;