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