Skip to content

Instantly share code, notes, and snippets.

@alxhub
Created February 2, 2016 19:17
Show Gist options
  • Save alxhub/51feefc0eb6b534326a4 to your computer and use it in GitHub Desktop.
Save alxhub/51feefc0eb6b534326a4 to your computer and use it in GitHub Desktop.
#include <stdio.h>
union foo {
long long x;
double y;
};
int main(int argc, char** argv) {
union foo z;
z.x = 0x7ff0000000000000L;
printf("0x%x\n", (int)z.y);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment