Skip to content

Instantly share code, notes, and snippets.

@jerstlouis
Created January 4, 2014 03:41
Show Gist options
  • Save jerstlouis/8251341 to your computer and use it in GitHub Desktop.
Save jerstlouis/8251341 to your computer and use it in GitHub Desktop.
struct SS
{
uint a;
union
{
uint b;
uint c;
}x;
};
void Test()
{
struct SS * p = new struct SS[10];
p[2].x.b=1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment