Guest User

Untitled

a guest
May 23rd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.11 KB | None | 0 0
  1. int count_set_bits(unsigned int x) {
  2.     int count = 0;
  3.     while (x) {
  4.         x &= x-1;
  5.         count++;
  6.     }
  7.     return count;
  8. }
Add Comment
Please, Sign In to add comment