Why this line prints 17 and not 3?
printf("%d" ,0x11);
0x11
0x11 is hexadecimal (base 16) number, and 11 (hexadecimal) is equal to 17 (decimal).
11
17
Because 0x introduces a hexadecimal literal, not a binary one.
0x
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
10 months ago
viewed
129 times
active
0x11is hexadecimal, not binary. – Mysticial Jul 23 '12 at 10:36