Concept Flow - Register storage class
Declare variable with 'register'
Compiler tries to store variable in CPU register
Variable used in code
Fast access to variable
End of scope: variable destroyed
The 'register' keyword suggests the compiler to store the variable in CPU register for faster access during its scope.