Skip to content

Instantly share code, notes, and snippets.

@a46554
Created July 30, 2018 08:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save a46554/4a7bedf1a4f2414156ff8daf2041ce49 to your computer and use it in GitHub Desktop.
Save a46554/4a7bedf1a4f2414156ff8daf2041ce49 to your computer and use it in GitHub Desktop.
int 8_t b = -10; // b = 0xf6 for 2's complement
b = b << 1; // b=0xec
b = b >> 1; // Now b = 0x76 and for demical b = 118 unexpect ouput
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment