1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
struct Foo {
|
|
|
|
union {
|
|
|
|
int zero;
|
|
|
|
unsigned int one;
|
|
|
|
} num1;
|
1999-08-03 01:48:37 +02:00
|
|
|
struct X {
|
1999-04-16 03:35:26 +02:00
|
|
|
int rock;
|
|
|
|
unsigned int rock2;
|
1999-08-03 01:48:37 +02:00
|
|
|
};
|
|
|
|
union {
|
|
|
|
int pebble;
|
|
|
|
X x;
|
1999-04-16 03:35:26 +02:00
|
|
|
union {
|
|
|
|
int qux;
|
|
|
|
unsigned int mux;
|
|
|
|
};
|
|
|
|
unsigned int boulder;
|
|
|
|
};
|
|
|
|
union {
|
|
|
|
int paper;
|
|
|
|
unsigned int cloth;
|
|
|
|
};
|
|
|
|
union {
|
|
|
|
int two;
|
|
|
|
unsigned int three;
|
|
|
|
} num2;
|
|
|
|
};
|
|
|
|
|
|
|
|
union Bar {
|
|
|
|
int x;
|
|
|
|
unsigned int y;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
1999-08-03 01:48:37 +02:00
|
|
|
Foo foo = {0, 0};
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
foo.paper = 33;
|
|
|
|
foo.pebble = 44;
|
|
|
|
foo.mux = 55;
|
|
|
|
|
1999-08-03 01:48:37 +02:00
|
|
|
Bar bar = {0};
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-08-03 01:48:37 +02:00
|
|
|
union {
|
1999-04-16 03:35:26 +02:00
|
|
|
int z;
|
|
|
|
unsigned int w;
|
1999-08-03 01:48:37 +02:00
|
|
|
}; w = 0;
|
|
|
|
|
|
|
|
bar.x = 33;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
w = 45;
|
|
|
|
|
2006-06-13 10:46:17 +02:00
|
|
|
int j = 0;
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|