I tried
sscanf(str, "%016llX", &int64 );
but seems not safe. Is there a fast and safe way to do the type casting?
Thanks~
|
I tried
but seems not safe. Is there a fast and safe way to do the type casting? Thanks~ |
||||
| show 2 more comments |
|
Don't bother with functions in the
Note that
If you also wish to disallow overly long representations of numbers (leading zeros), you could check the following condition before calling
One more thing to keep in mind is that "negative numbers" are not considered outside the range of conversion; instead, a prefix of |
|||||
|
|
Your title (at present) contradicts the code you provided. If you want to do what your title was originally (convert a string to an integer), then you can use this answer. You could use the
|
|||||||||||||
|
|
At the time I wrote this answer, your title suggested you'd want to write an int64_t into a string, while your code did the opposite (reading a hex string into an int64_t). I answered "both ways": The
Or (if that is indeed what you're trying to do), the other way round:
Note that you cannot enforce widths etc. with the |
||||
|
|
str? – Flinsch Nov 9 '10 at 9:59sscanf()doesn't make sense. Given that code snippet,strtol()orstrtoll()(depending on platform) are the safer option. Check for success! – DevSolar Nov 9 '10 at 10:12