C++ Storage Classes
Vikas saini
January 19, 2020
0
The storage class is used to specify control of two different properties: storage lifetime and scope(visibility) of variables.
Following storage classes can be used in a C++ Program:
Automatic
External
Static
Register
Table of Contents
1. Automatic(auto) Storage Class
2. The External...