Skip to content

Instantly share code, notes, and snippets.

@CTurt
Created July 30, 2015 10:36
Show Gist options
  • Save CTurt/3a0a248c218080d3f139 to your computer and use it in GitHub Desktop.
Save CTurt/3a0a248c218080d3f139 to your computer and use it in GitHub Desktop.
// Bitmask calculator
#include <stdio.h>
int n = 0x33;
int main(void) {
int i;
for(i = 0; i < 20; i++) {
if(n & (1 << i)) printf("%d | ", 1 << i);
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment