InterviewSolution
Saved Bookmarks
| 1. |
When should we use the register storage specifier? |
|
Answer» If a variable is used FREQUENTLY, it should be DECLARED with the register storage SPECIFIER, and the compiler MAY allocate a CPU register for its storage to speed up variable lookup. |
|