C Functions Question:
Download Questions PDF

Do you know the purpose of "register" keyword?

Answer:

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.

Download C Functions Interview Questions And Answers PDF

Previous QuestionNext Question
What are the scope of static variables?Do you know the use of "auto" keyword?