write a program to find out number of on bits in a number?

Answer Posted / jaya j

unsigned int count1s(unsigned char x)
{
int p;
for(p=0;x!=0;x>>=1)
if(x&1)
p++;
return p;
}

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What does the && operator do in a program code?

919


Explain what does the function toupper() do?

812


Is there sort function in c?

773


Can you write the algorithm for Queue?

1735


How can I split up a string into whitespace-separated fields?

784


What is storage class?

834


What is the best way to comment out a section of code that contains comments?

1041


What are structure types in C?

839


What are global variables and how do you declare them?

776


What is a constant and types of constants in c?

829


If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402

3526


Who is the founder of c language?

862


How do you define a function?

762


Explain how can I convert a number to a string?

843


If fflush wont work, what can I use to flush input?

828