First of all: i didnt wanted to put this on the C board because its not a real problem i just want to know what the difference is between a register int and a normal int.
According to my lib reference from BC 4.5
register int :to optimize access and reduce code.
Items declared with the register have a global lifetime.
So why dont we use register int where we can ( known that its possibly faster in processing) instead of using a normal int ?