I've learned first that I've to add a "h" as suffix to a hexadecimal number for the characterize it as hex-number.
Now I've seen that some programmers use a "0x" prefix. Obviously for the same task.
I've tinkered a bit with the notations:
mov eax, 0x1a;
... and ...
mov eax, 1ah;
The result seems to be equal in both cases.
So my question:
**Are both notations are basically the same. Is it just a matter of preference which one I choose?
Or exists a significant difference?**