Register storage classes are used to stored the local variable in CPU register not in memory.
Default Value :-
Important Note :-
Default Value :-
- Default Value of register storage classes is garbage.
- We can declare it locally
- Register storage class variable are always stored in CPU register
- Scope of register storage class variable is within a block or braces.
- Life of register is same as an auto storage class.
We can not use the address of register storage classes variable because it stored in CPU.
Register storage class is fastest of all four storage type.
Function arguments are of register storage class.
Function arguments are of register storage class.