typedef union
{
unsigned i;
float x;
} f;
f array[12];
What do I need to do to address the union
members in an array like this? If not possible, how can I do this?
typedef union
{
unsigned i;
float x;
} f;
f array[12];
What do I need to do to address the union
members in an array like this? If not possible, how can I do this?