Storage Classes in C- automatic, register, static and external storage
Duration: 13:20 Min | Sep 07, 2023
Default storage class for variables declared within a function or a block.
Scope: Limited to the block or function in which it is defined.
Lifetime: The variable exists only during the execution of the block or function.
Access: Only accessible within the block or function where it is declared.
Initialization: It is not necessary to explicitly initialize auto variables; they are assigned a garbage value by default.