Define Some Features of Automatic Variables in C program?
The features of automatic variables are like as
Storage - memory
Default initial value - an unpredictable value, which is often a garbage value.
Scope - local to the block in which the variable is defined
Life - till the control remains within the block variable is defined.