Define some features of static storage class in c program?
The features of a variable defined to contain a static storage class are as follows.
Storage - memory
Default initial value - zero
Scope - local to the block in which it is defined
Life - value of the variable persists between different function calls.