First page Back Continue Last page Graphics
Register Variables
If you want the fastest possible access to a variable, you can add the keyword register to its definition.
Again, this is a “request” or “hint” to the compiler. It (the compiler) can always choose for itself.
Often the compiler will say “duh!” and do this for itself. Probably more efficiently than you.
You CAN'T apply address operators to register variables!