Storage Classes in the C Language


In the C programming language, a storage class defines the scope (visibility) and life-time of variables and/or functions within a program. There are four fundamental storage classes that can be used to define these properties: auto, register, static, and extern.
Read more...



