Skip to content

Instantly share code, notes, and snippets.

@prehistoricpenguin
Created August 7, 2014 09:22
Show Gist options
  • Save prehistoricpenguin/35aa9c80dccc667fb3d0 to your computer and use it in GitHub Desktop.
Save prehistoricpenguin/35aa9c80dccc667fb3d0 to your computer and use it in GitHub Desktop.
int _tmain(int argc, _TCHAR* argv[])
{
short x = -12345;
unsigned ux = x;
print_hex(x);
print_hex(ux);
return 0;
}
/*
c7 cf
c7 cf ff ff
请按任意键继续. . .
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment