1.

register float a = 3.14f;

A. Variable a is stored in CPU registers for fast access.
B. Variable a is converted to int and then stored in a CPU register.
C. register Storage Class is ignored and treated as
D. You get a compiler error as you can not store non integer value in a CPU register.
Answer» D. You get a compiler error as you can not store non integer value in a CPU register.


Discussion

No Comment Found