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


Please Help Members By Posting Answers For Below Questions

Explain do array subscripts always start with zero?

929


What are the advantages of using macro in c language?

785


Why clrscr is used in c?

776


Why should I prototype a function?

814


Why is python slower than c?

793






What is #define in c?

799


What is meant by gets in c?

795


Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon

5681


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

842


why programs in c are running with out #include? some warnings are display in terminal but we execute the program we get answer why? eg: main() { printf("hello world "); }

1500


What is difference between structure and union?

835


How will you find a duplicate number in a array without negating the nos ?

1822


Can I initialize unions?

792


What is meant by keywords in c?

821


What are logical errors and how does it differ from syntax errors?

873