Variable declaration

what does this mean when a variable is declared as


register int i;

Thanks. :confused:

It was a hint to older compilers that i might profit from being assigned to a register. Modern compilers will figure out what to do.

Also you can't take the address of a variable declared to be register.

Thanks for the info.