I am writing a code in which I need to parse a string to a "long long int"
I used to use atoi when changing from string to int, I dont think it still work. What Can I use now?
--Thanks
feedback
|
|
Use
(This is only available in C99 and C11, not in C89.) The third argument is the number base for the conversion, and | |||
feedback
|