
Storage Class
1. What are defined in the storage class?
Ans: The life time and scope of the variable or/and function in a program are defined in the storage
class.
2. List the storage classes supported by C.
Ans: C supports the following storage classes and the corresponding C keywords associated with
them are as follows:
Storage class Keyword
1. Automatic auto
2. External extern
3. Static static
4. Register register
3. Give the importance of storage class.
Ans: The storage class of a variable tells the compiler:
1. The storage area or scope of the variable.
2. The initial value of variable if not initialized.
3. The scope of the ...