Advertisement
Guest User

Untitled

a guest
Apr 29th, 2016
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.29 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. void _ctx_iface(__int128 s, int i) {
  5.   int c = (((s & ((__int128)0x1FULL << i * 5)) >> i * 5) + 65);
  6.   printf("%c", c);
  7.  }
  8.  
  9. int main() {
  10.   for (int i=0; i<17; i++) {
  11.      _ctx_iface(0x79481E6BBCC01223 + ((__int128)0x1222DC << 64), i);
  12.   }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement