Which of the following is not a storage class in C?
A. auto
B. struct
C. extern
D. static
E. register
Answer: Option B
Solution (By Examveda Team)
A storage class defines the scope (visibility) and life-time of variables and/or functions within a C Program. These specifiers precede the type that they modify. There are the following storage classes, which can be used in a C Program
- auto
- register
- static
- extern
Related Questions on Storage Class
What is the primary purpose of the 'static' storage class?
A. Extend scope
B. Preserve value
C. Allocate memory
D. Register access

Join The Discussion