What four storage class specifier do we have in C++?
Sigiloso
auto - automatic storage duration. (until C++11) register - automatic storage duration. Also hints to the compiler to place the object in the processor's register. (deprecated) (until C++17) static - static or thread storage duration and internal linkage extern - static or thread storage duration and external linkage thread_local - thread storage duration. (since C++11)