What is Variable Storage Classes?

C Programming Language >   Variable in C Language >   Variable types and Scope in C  

Long Question

798


Answer:

auto: The default class. Automatic variables are local to their block. Their storage space is reclaimed on exit from the block.

register: If possible, the variable will be stored in a processor register. May give faster access to the variable. If register storage is not possible, then the variable will be of automatic class. Use of the register class is not recommended, as the compiler should be able to make a better judgment about which variables to hold in
registers, in fact the injudicious use of register variables may slow down the program.

static: On exit from the block, static variables are not reclaimed. They keep their value. On re-entry to the block, the variable will have its old value.

extern: Allows access to external variables. An external variable is either a global variable or a variable defined in another source file. External variables are
defined outside of any function. (Note: Variables passed to a function and modified by way of a pointer are not external variables)

static external: External variables can be accessed by any function in any source file which make up the final program. Static external variables can only be accessed by functions in the same file as the variable declaration.


This Particular section is dedicated to Question & Answer only. If you want learn more about C Programming Language. Then you can visit below links to get more depth on this subject.




Join Our telegram group to ask Questions

Click below button to join our groups.