What is the difference between a structure and a union in C++?
A. Structures cannot contain member functions
B. Unions are used for mathematical operations
C. In a structure, each member has its own memory space, while in a union, all members share the same memory space
D. Structures are used for data organization
Answer: Option C
Join The Discussion