Skip to content

Instantly share code, notes, and snippets.

@nramsbottom
Created March 25, 2020 07:57
Show Gist options
  • Save nramsbottom/0c159074b614a99b60df95d6ab4c087f to your computer and use it in GitHub Desktop.
Save nramsbottom/0c159074b614a99b60df95d6ab4c087f to your computer and use it in GitHub Desktop.
Bits
void show_bits(unsigned int i) {
printf("|32 |24 |16 |8 |\n");
for (int n = 31; n >= 0; n--) {
printf("%u", (0x1 << n) & i ? 1 : 0);
}
printf(" %8X %u", i, i);
printf("\n");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment