Scott
0
Q:

bitwise count total set bits

// C++ program to demonstrate __builtin_popcount() 
#include <iostream> 
using namespace std; 
  
int main() 
{ 
    cout << __builtin_popcount(4) << endl; 
    cout << __builtin_popcount(15); 
  
    return 0; 
} 
1
countBits = (n) => n.toString(2).split("0").join("").length;
1
//WAP to find setbits (total 1's in binary ex. n= 5 => 101 => 2 setbits
int count{}, num{};
  cin >> num;

  while (num > 0) {
    count = count + (num & 1); // num&1 => it gives either 0 or 1
    num = num >> 1;	// bitwise rightshift 
  }

	 cout << count; //count is our total setbits

0

New to Communities?

Join the community