Storage Classes in C
Any variable in C programming is specified by it's data-type and storage-class specifier. The general syntax is as follows :- //storage-class data-type variable-name; // Example: extern int myInteger; There are four storage classes in C: 1) Automatic 2) External 3) Static, and 4) Register. 1.1) Automatic Variables :- These are the variables defined with in a function. Alternatively any thing