Every variable fall into one of the four storage classes those are auto, extern, static and register.
Auto is default storage of the variable. It means if nothing is specified as then auto will
be the storage class of the variable. These variables are local variables and the variable get the
space in main memory.Default value of the auto variable is 0.
Syntax of the Declaration of auto variables: