C
Charles Arnett
I have delcred a union as
union {TProbe probeArray[4];
char dummy[sizeof(probeArray)];
} PutEE;
TProbe has various elements such as rtp = 100.01
however when I want to access probeArray[0].rtp
it doesn't access.
Should I typedef the union somewhere and how do i do it.
charles arnett
union {TProbe probeArray[4];
char dummy[sizeof(probeArray)];
} PutEE;
TProbe has various elements such as rtp = 100.01
however when I want to access probeArray[0].rtp
it doesn't access.
Should I typedef the union somewhere and how do i do it.
charles arnett