Skip to content

Instantly share code, notes, and snippets.

@vishnujayvel
Created July 6, 2013 18:49
Show Gist options
  • Save vishnujayvel/5940841 to your computer and use it in GitHub Desktop.
Save vishnujayvel/5940841 to your computer and use it in GitHub Desktop.
#include<iostream>
using namespace std;
int countSetBits(int n){
int count=0;
while(n){
n=n&n-1;
count++;
}
return count;
}
int main(){
cout<<countSetBits(15);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment