0
6.8kviews
What is significance of storage class? Illustrate each storage class with example
1 Answer
| written 9.3 years ago by |
Significance of storage class:
Every C variable has a storage class and a scope.
The storage class determines the part of memory where storage is allocated for an object and how long the storage allocation continues to exist.
It also determines the scope which specifies the part of the program …