Why is union better than structure?

Advantages of union It occupies less memory compared to structure . When you use union, only the last variable can be directly accessed. Union is used when you have to use the same memory location for two or more data members. It enables you to hold data of only one data member.8 Şub 2022

Read more

Are unions useful in C?

C unions are used to save memory . To better understand an union, think of it as a chunk of memory that is used to store variables of different types. When we want to assign a new value to a field, then the existing data is replaced with new data.

Read more