Google News
logo
CPP - Quiz(MCQ)
What will happen when defining the enumerated type?
A)
it will not allocate memory
B)
allocate memory to objects
C)
it will allocate memory
D)
it will not allocate memory to its variables

Correct Answer :   it will not allocate memory


Explanation : Enumerator will allocate the memory when its variables are defined.

Advertisement