Different between union and structure in c programming
Answers
Answered by
1
Answer:
Structure is the container defined in C to store data variables of different type and also supports for the user defined variables storage. ... On other hand Union does not have separate location for each of its member so its size or equal to the size of largest member among all data members.
Similar questions