0 votes
in C Plus Plus by
What are the differences between structures and union in C Language?

1 Answer

0 votes
by

A structure variable contains each of the named members, and its size is large enough to

hold all the members. Structure elements are of same size.

A union contains one of the named members at a given time and is large enough to hold the

largest member. Union element can be of different sizes.

Related questions

0 votes
asked Jan 11 in C Plus Plus by GeorgeBell
0 votes
asked Mar 12, 2020 in C Plus Plus by rahuljain1
...