C (gcc on linux): How do i convert a hex string "0xfffffff" to an integer ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The other, quasi-portable, way is
Use is a little strange. The first argument is the string you want to convert, and the third is the base, which for hex would be 16. The second argument is used for debugging: it can point to the first character in the hex string which failed to convert. |
|||||||||||||
|
|
Ok. strtol does it.
|
|||||
|