Why are Hexadecimal Prefixed as 0x and not anything else? I understand the usage of prefix but I dont understand the significance of 0x.
feedback
|
|
Note: I don't know the correct answer, but the below is just my personal speculation! As has been mentioned a 0 before a number means it's octal:
Imagine needing to come up with a system to denote hexadecimal numbers, and note we're working in a C style environment. How about ending with h like assembly? Unfortunately you can't - it would allow you to make tokens which are valid identifiers (eg. you could name a variable the same thing) which would make for some nasty ambiguities.
You can't lead with a character for the same reason:
Using a hash was probably thrown out because it conflicts with the preprocessor:
In the end, for whatever reason, they decided to put an x after a leading 0 to denote hexadecimal. It is unambiguous since it still starts with a number character so can't be a valid identifier, and is probably based off the octal convention of a leading 0.
| |||||||||||||||
feedback
|
|
Short story: The Long story: In the 60's, the prevalent programming number systems were decimal and octal — mainframes had 12, 24 or 36 bits per byte, which is nicely divisible by 3 = log2(8). The BCPL language used the syntax
When C was created from B, the need for hexadecimal numbers arose (the PDP-11 had 16-bit words) and all of the points above were still valid. Since octals were still needed for other machines, C# is a descendant of C, so it inherits the syntax. | |||
|
feedback
|
|
It appears to have stemmed from a C convention: http://en.wikipedia.org/wiki/Hexadecimal#Representing_hexadecimal . | |||||||||||||||||
feedback
|
|
hexadecimal-constant:
0x hex-digit
0X hex-digit
hexadecimal-constant hex-digit
where
hex-digit: one of
0 1 2 3 4 5 6 7 8 9
A B C D E F a b c d e f
Thus, As to why C uses | |||
|
feedback
|