Register Storage Class
- Register is used to define Local Variable.
- Local Variable stored in Register instead of RAM.
- As Variable is stored in Register so Maximum size of variable = Maximum Size of Register
- Unary Operator [&] is not associated with it because Value is not stored in RAM instead it is stored in Register.
- This is generally used for faster access.
- Common use is “Counter”
{register int count;}
