Embedding Variables of an Enum Into a Structure
Learn how you can embed variables of an enum into a structure.
We'll cover the following...
Application of an enum
Suppose you want to store the name, age, and marital status of the employee. Once an enum
is declared, we can embed variables of its type into a ...