Evaluate the number of "1" in a binary number

Source: Internet
Author: User

First lookCode:

1 # Include < Stdio. h >
2
3   Int Fun ( Int X)
4 {
5 Int Count = 0 ;
6 While (X)
7 {
8 Count ++ ;
9 X = X & (X - 1 );
10 }
11 Return Count;
12 }
13
14   Void Main ( Void )
15 {
16 Int J = 0 ;
17 Int M = 0 ;
18 J = Fun ( 9999 ); // "9999" is just an example.
19   Return ;
20 }

 

Guess what the last "J" value is? This is a Microsoft exam I saw in a document.
The value of "J" is 8.
Train of Thought: Convert "9999" to binary, and check the number of "1 ". If you still cannot understand it, use a pen to calculate it manually (in binary mode ).

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.