(a) When should the register storage class specifier be used ? Does using the register storage class specifier guarantee to improve the performance of a program ? (5)
Answers
Answered by
0
Answer:
This means that the variable has a maximum size equal to the register size (usually one word) and can't have the unary '&' operator applied to it (as it does not have a memory location). The register should only be used for variables that require quick access such as counters.
Similar questions