Advertisement
intsashka

ht02-3_v2

Sep 25th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.16 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int
  4. bitcount(int value)
  5. {
  6.     int res = 0;
  7.     while(value) {
  8.         res += value & 1;
  9.         value >>= 1;
  10.     }
  11.     return res;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement