write a program to find out number of on bits in a number?
Answer Posted / anilkumar
int n ; \\any number
for(count=0;n&=(n-1); count++);
printf("%d", count);
Is This Answer Correct ? | 11 Yes | 4 No |
Post New Answer View All Answers
Explain do array subscripts always start with zero?
What are the advantages of using macro in c language?
Why clrscr is used in c?
Why should I prototype a function?
Why is python slower than c?
What is #define in c?
What is meant by gets in c?
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
why programs in c are running with out #include
What is difference between structure and union?
How will you find a duplicate number in a array without negating the nos ?
Can I initialize unions?
What is meant by keywords in c?
What are logical errors and how does it differ from syntax errors?