Tag: basics in c programming
-
STORAGE CLASS
Every variable in c programming has two properties: type and storage class. Type refers to the data type of variable whether it is character or integer or floating point value etc. . Storage class determines how long it stays in existence. There are four types of storage class : automatic external register static auto :…