0
5.5kviews
Explain different storage classes.
1 Answer
| written 8.9 years ago by |
The storage class of a variable is a set of properties about the variable.
The storage class of a variable determines 3 things: –
Scope: the sections of code that can use the variable. (i.e., variable visibility domain)
Linkage: how a variable can be used in a multiple source-file program. …