Write a short notes on storage classes in C.
Every variable and function in C has two attributes : type and storage class. The four storage classes are automatic, external, register and static.
Storage Class
|
Key Word
|
Auto
|
Automatic
|
Extern
|
External
|
Register
|
Register
|
Static
|
Static
|