in reply to Re^6: -1 from hex ffffffffffffffff ?
in thread -1 from hex ffffffffffffffff ?
You can't concatenate numbers together
I think it's pretty common to write a hex string as a concatenated sequence of hex bytes — even Perl does it:
$ perl -e"print unpack('H*', 'foobar')" 666f6f626172
Think of that foobar as a sequence of bytes in memory representing a little-endian number...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^8: -1 from hex ffffffffffffffff ?
by ikegami (Patriarch) on Oct 02, 2009 at 20:15 UTC |