0 votes
in C Plus Plus by
What are register variables in C Language? What are the advantages of using register variables in C Language?

1 Answer

0 votes
by

If a variable is declared with a register storage class,it is known as register variable.The

register variable is stored in the cpu register instead of main memory.Frequently used variables

are declared as register variable as it‘s access time is faster.

Related questions

0 votes
asked Mar 10, 2020 in C Plus Plus by rahuljain1
0 votes
asked Jan 9 in C Plus Plus by GeorgeBell
...