fork download
  1. #include <stdio.h>
  2.  
  3. typedef union {
  4. int i; struct { short a, b };
  5. } yoba;
  6.  
  7. int main() {
  8. yoba x;
  9. x.i = 0xDEADBEEF;
  10. printf("%x %x", x.a, x.b);
  11. return 0;
  12. }
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
ffffbeef ffffdead