bitset::count() is an inbuilt STL in C++ which returns the number of set bits in the binary representation of a number.
Syntax:
int count()
Parameter: The function accepts no parameter.
Return Value: The function returns the number of set bits. It returns the total number of ones or the number of set bits in the binary representation of the number if the passed number is an integer.
Below programs illustrates the bitset::count() function.
Program 1:
Output:
1100 has 2 set bit
001000 has 1 set bit
Program 2: