answersLogoWhite

0


Best Answer

int bitcount (unsigned n)

{

int bitc= 0;

while (n) {

++bitc;

n = n&(n-1);

}

return bitc;

}

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Write a c plus plus program that counts the no. of 1 bit in a given integer?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Write a C program to extract a given word from a file?

program to extract a given word from a file


How can you write a program specification for a given report?

It is your face


Shell program for gcd of three given numbers?

write a shell program for finding out gcd of three given numbers? write a shell program for finding out gcd of three given numbers? write a shell program for finding out gcd of three given numbers? check bellow link http://bashscript.blogspot.com/2009/08/gcd-of-more-than-two-numbers.html


How do you write a program that outputs a given characters in reverse?

write the javascript code to display the reverse no. of given no. (e.g. 247 reverse of 742)


Given the prime factorization of an integer how can you determine if our integer is a perfect square?

Given the prime factorization of an integer how can you determine if our integer is a perfect square?


How do you write a shell script which counts the number of lines and words present in a given file?

#!/bin/sh wc -lw "$1"


How do you Write a program that determines the number of occurrences of each digit in a given integer n?

there could be a part in it like this: int num, digit; int count [10]; do { digit = num%10; num != 10; ++count[digit]; } while (num);


What is 63492063492064 as a fraction?

As given it is an integer. However, if redrafted as 0.634920634920634... at every Which is a recurring decimal to infinity. This decimal recurs at every sixth digit. So we say Let P = 0.634920634920634... 1000000P = 634920.634920634... Subtract 999999P = 634920 . 0 Note the decimals subtract to zero. P = 634920/999999 Cancel down by '3' 211640/333333 The answer!!!!! Subtract


How do you write a program to find number of zeros for the given number in c program?

Assuming the number is represented by a decimal integer, initialise a counter to zero, then repeatedly divide the number by 10 and until the number is zero. After each division, examine the remainder. Each time the remainder is zero, increment the counter. If the number is represented by a decimal float, repeatedly multiply by 10 until the value is an integer, then perform the previous algorithm.


Do I need to write a program to find a substring in a given string in c plus plus?

No.


How do you write a c program to show How many Friday the 13th are there in a given year?

165


Write a c program to find given number is prime or not?

Yes, do write, or if you're too lazy to your homework, use google.