C / C++ / Interview Questions
Storage Class Specifiers in C and C++
Storage class specifiers are a way to tell compiler how to store the corresponding variable. There are following types of Storage class specifiers available in C/C++.
- auto
- extern
- register
- static
- mutable — Only available in C++