fork(9) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int X = 0x08090a0b;
  6.  
  7. printf("%8x", ((X << 24) | (((X>>16)<<24)>>16) | (((X<<16)>>24)<<16) | (X>>24)));
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 2292KB
stdin
Standard input is empty
stdout
 b0a0908