[ create a new paste ] login | about

Link: http://codepad.org/jlz4eBHE    [ raw code | output | fork ]

C, pasted on Nov 19:
1
2
3
4
5
6
#include <stdio.h>
int main() {
 char c = 0x9d;
 printf("%x", 0xff & c);
 return 0;
}


Output:
1
9d


Create a new paste based on this one


Comments: