Storage Classes in C Programming Language: Auto, Register, Extern & Static Storage Types
January 25, 2010
Storage Types in C Programming Language
A storage class is used to tell the compiler how to store the variables and functions within a program or code. It is generally represented as :
Storage-class type variable-name ;
Different types of storage classes used in a C program are :
- Auto
- Register
- Extern
- Static WAIT! There is more to read… read on »