Concept of Storage Classes In C
What are Storage Classes ? Storage classes in c programming are used to describe about the features of a variable/functions. These features basically include scope , life time , default value, storage area of variable/functions in c. Scope : It means the area of code where a variable is accessible. Life Time : It means the time duration during runtime till which our variable is live or can be used. In this time duration doesn't means the actual time it related with function life where it is used for that duration. Default Value : It is the value which is assigned to variable initially when we declare it. Storage Area : It means where our variable data is stored whether it is in register or hard disk,etc. Types of Storage Classes Auto * Any variable in c programming is auto variable by default. So, there is no need to use the keyword auto. * if variable is not initialized , by default auto variable contains garbage value. * auto variable is...