C
Programming and Technical
What are register variables? What are the advantage of
using register variables?
Read Solution (Total 1)
-
- Register variable are the variable which is declared by using register keyword.
example register int a;
Advantage of using register variables: when we use register variable the register variable are stored in the register but not in the memory.when we access the register variable in the program there access time is less than the other variable like auto,static,extern.
- 10 years agoHelpfull: Yes(2) No(0)
C Other Question