A union is a single section of data that can be referenced in different ways. The format for specifying a union is:
typedef union packed {union_member1; union_member2...union_memberx;} unions_name;
A union is a single section of data that can be referenced in different ways. The format for specifying a union is:
typedef union packed {union_member1; union_member2...union_memberx;} unions_name;