Union

Structure vs Union

Structure vs Union
A structure is defined by the struct statement, whereas a union is defined by the union statement. Both store data, but while the union allows storing different data types in the same memory location, a...