Need to make int from hex representation string like "0xFA" or better "FA". Need something like atoi("FA"). Is there are any standard solutions for that?
"0xFA"
"FA"
atoi("FA")
Try to use strtol():
strtol("FA", NULL, 16);
2.1m questions
2.1m answers
60 comments
57.0k users