I'm trying to use a Union in a Windows Forms application in C++. My code goes like this:
union mytypes1_t {
unsigned long mylong;
char mychar;
} mytypes1;
After the includes at the top of my Form1.h file, and:
for (int num = 0;num<3;num++) {
mytypes1.mychar[0]='a';
}
When a button is clicked.
I get the error ... "subscript requires array or pointer type"
Where am I going wrong?
mycharis not an array. Did you want to do this:mytypes1.mychar='a'? – Alex Aza Jun 19 '11 at 3:44