Register Variables

A register declaration advises the compiler that the variable in question will be heavily used. The idea is that register variables are to be placed in machine registers, which may result in smaller and faster programs. But compilers are free to ignore the advice.

The register declaration looks like:

register int x; register char c; 

and so on. The register declaration can only be applied to automatic variables and to the formal parameters of a function. In this later case, it looks like:

f(register unsigned m, register long n) { 

    register int i; 
    ...
}

In practice, there are restrictions on register variables, reflecting the realities of underlying hardware. Only a few variables in each function may be kept in registers, and only certain types are allowed. Excess register declarations are harmless, however, since the word register is ignored for excess or disallowed declarations. And it is not possible to take the address of a register variable (a topic covered in Chapter 5), regardless of whether the variable is actually placed in a register. The specific restrictions on number and types of register variables vary from machine to machine.

Note

You really don't need this, unless you're planning on programming embedded systems.
The compiler is optimized to such an extent that i will plainly ignore all the register declarations, since 9 times out of 10 it can find a more efficient approach.

You will probably never see or use this keyword in any C code.