Skip to content

Instantly share code, notes, and snippets.

@cynx
Created June 12, 2014 02:58
Show Gist options
  • Save cynx/771dd017b33d33ba812d to your computer and use it in GitHub Desktop.
Save cynx/771dd017b33d33ba812d to your computer and use it in GitHub Desktop.
Count number of bits
int bitcount(unsigned x)
{
int b;
for(b = 0;x != 0;x &= x-1)
++b;
return b;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment