Skip to content

Instantly share code, notes, and snippets.

@DamonHao
Created October 11, 2014 07:11
Show Gist options
  • Select an option

  • Save DamonHao/872c660c7d12f8f8dbe0 to your computer and use it in GitHub Desktop.

Select an option

Save DamonHao/872c660c7d12f8f8dbe0 to your computer and use it in GitHub Desktop.
C++ linux little edian
void test()
{
int a = 0x00002;
char p = ((char*)(&a))[0];
cout << (int)p << endl;
}
int main()
{
test();
return 0;
}
output 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment