fork download
  1. #include <stdio.h>
  2. int main() {
  3. union data {
  4. unsigned long number;
  5. unsigned short bytes[4];
  6. } unit;
  7. unit.number = 0xA1B2C3D4E5F6A7B8;
  8. printf("%x %x\n", unit.bytes[1], unit.bytes[3]);
  9. }
  10.  
Success #stdin #stdout 0s 5308KB
stdin
Standard input is empty
stdout
e5f6 a1b2