Do you know the purpose of "register" keyword?

Submitted by: Muhammad
It is used to make the computation faster.
The register keyword tells the compiler to store the variable onto the CPU register if space on the register is available. However, this is a very old technique. Todays processors are smart enough to assign the registers themselves and hence using the register keyword can actually slowdown the operations if the usage is incorrect.
Submitted by: Muhammad

Read Online C Functions Job Interview Questions And Answers