Skip to content

Instantly share code, notes, and snippets.

@omargfh
Created April 14, 2022 02:47
Show Gist options
  • Save omargfh/3ec4b980ab81bf53a844c149384be609 to your computer and use it in GitHub Desktop.
Save omargfh/3ec4b980ab81bf53a844c149384be609 to your computer and use it in GitHub Desktop.
displayBits.c
void display(int val) {
for(int i = 0, s = sizeof(val) * 8; i < s; i++) {
if (!(i % 8) && i != 0) {
printf(" ");
}
printf("%d", (val >> (s - 1 - i)) & 0x01);
}
printf("\n");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment