C++ Storage Classes
What is Storage Class in C? Storage class is used to define the scope and lifetime of a variable. It tells the compiler where to allocate memory for a variable. Every variable in C++ has a type and the storage class. The type defines its data types such as int, float, etc. While storage defines … Read more