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
What does the && operator do in a program code?
Explain what does the function toupper() do?
Is there sort function in c?
Can you write the algorithm for Queue?
How can I split up a string into whitespace-separated fields?
What is storage class?
What is the best way to comment out a section of code that contains comments?
What are structure types in C?
What are global variables and how do you declare them?
What is a constant and types of constants in c?
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
Who is the founder of c language?
How do you define a function?
Explain how can I convert a number to a string?
If fflush wont work, what can I use to flush input?