0 votes
in C Plus Plus by
What is a union in C Language?

1 Answer

0 votes
by

Union is a collection of heterogeneous data type but it uses efficient memory utilization

technique by allocating enough memory to hold the largest member. Here a single area of

memory contains values of different types at different time. A union can never be initialized.

Related questions

+1 vote
asked Jan 20, 2021 in C Plus Plus by SakshiSharma
0 votes
asked Mar 17, 2020 in C Plus Plus by rajeshsharma
...