[086a2a]: / test / types-struct-unnamed-union.c  Maximize  Restore  History

Download this file

10 lines (9 with data), 64 Bytes

1
2
3
4
5
6
7
8
9
struct test
{
int a;
int b;
union {
int c;
int d;
};
};