Storage Class in C
Storage Class in C Programming (variable storage class) From compiler point of view, a variable name identify some physical location in any computer when a string of bits representing a variables value stored. There are basically two kind of location in computer where such values are stored - 1. CPU Registers 2. Main Memory It is variable storage class that determine in which of these two types of location, ...