Guest User

Untitled

a guest
Jul 16th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. typedef unsigned char uint8;
  4. typedef unsigned long long uint64;
  5.  
  6. int
  7. main(void)
  8. {
  9. uint8 x = 0x80;
  10. uint64 y = x<<1;
  11. uint64 z = x<<25;
  12.  
  13. printf("%#x %#llx %#llx\n", x, y, z);
  14. return 0;
  15. }
Add Comment
Please, Sign In to add comment