posted 18 years ago
Hi,
doing it manually will help you more to understand.
It basically works like binary, except the base is 16.
For example:
0xbad
b*16^2 + a*16^1 + d*16^0
= 11*256 + 10*16 + 13*1
= 2816 + 160 + 13
= 2989
Ciao,<br /> Tommaso<br /> <br />~*~*~*~<br />There are 10 types of people, those who understand binary and those who don't.