Which of the following is not a storage class specifier in C programming…
2018
Which of the following is not a storage class specifier in C programming language?
- A.
Register
- B.
Volatile
- C.
Extern
- D.
Typedef
Attempted by 651 students.
Show answer & explanation
Correct answer: B
In C programming, storage class specifiers determine the scope, lifetime, and initial value of variables. The standard storage classes are auto, register, static, and extern. Volatile is a type qualifier used to indicate that a variable's value may change unexpectedly, not a storage class specifier.