What are Union and Enumeration ??
Answers
Answered by
3
Union and Enumeration in C++. Union in C++. Union is also used to group a number of different variables together under a common name. Hence, it is similar to structure with a difference in the way the data is stored and retrieved.
Animesh1807:
But can we use multiple variables of a union at a time
Similar questions