5. Count Set Bits in an Integer

Write a C program to count the number of set bits (1s) in the binary representation of an integer N.

Input Format

  • A single integer N.

Output Format

  • Print the count of set bits.

Submit Your Solution