Storage classes in C programming
Every variable in C is associated with a storage class in addition to its data type and name. A variable’s storage class specifier tells us : The place where the variable may be stored: Memory or CPU registers. The default initial value of the variable, if the initial value is […]