...
The atoi()
, atol()
, atoll()
, and atof()
functions convert the initial portion of a string token to int
, long int, long long int
, and double
representation, respectively. Except for the behavior on error ([ISO/IEC 9899:2011], s7.2322.1.2), they are equivalent to
...