atoi
atoi
: Convert a string to an integer.
Only atoi
requires that the input be a specific type. The others will attempt
to convert from any type to the destination type. For example, int64
can convert
floats to ints, and it can also convert strings to ints.