fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int count = 0;
  5. unsigned int work = 011100000000;
  6. while(work !=0){
  7. count++;
  8. work = work & (work-1);
  9. }
  10. printf("%d",work);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
Standard output is empty