| 27 | } |
| 28 | |
| 29 | int main() |
| 30 | { |
| 31 | int n = -1; |
| 32 | |
| 33 | cout << n << " in binary is " << bitset<32>(n) << endl; |
| 34 | cout << "The total number of set bits in " << n << " is " |
| 35 | << countSetBits(n) << endl; |
| 36 | |
| 37 | return 0; |
| 38 | } |
nothing calls this directly
no test coverage detected