Created
November 3, 2014 01:35
-
-
Save jeffhung/befd6063bb62bc4bbf6c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma pack(push, 1) // exact fit - no padding | |
union A | |
{ | |
int a[3]; | |
struct { | |
int x; | |
int y; | |
int z; | |
} s; | |
}; | |
#pragma pack(pop) //back to whatever the previous packing mode was |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment