64-bit and integer representation...
With 64-bit processors becoming more and more common, is there a commonly accepted method which represents 64-bit integers in a more readable form?
Previous hex can represent 32-bit integers fairly nicely, still readable. But I was wondering how people were representing 64-bit integers in code so that it was still fairly readable.
Re: 64-bit and integer representation...
We use 64 bit numbers for a couple things here, and we still use the old notation, "0xFFFF0000AAAA5555".
Viggy
Re: 64-bit and integer representation...
I guess you must find it pretty easy to read then?
Does it not affect code maintenance at all?
Re: 64-bit and integer representation...
I haven't had an issue with it (yet). ;)
Viggy