std::atoi,std::atol,std::atoll (3) - Linux Manuals
std::atoi,std::atol,std::atoll: std::atoi,std::atol,std::atoll
NAME
std::atoi,std::atol,std::atoll - std::atoi,std::atol,std::atoll
Synopsis
Defined in header <cstdlib>
int atoi( const char *str );
long atol( const char *str );
long long atoll( const char *str ); (since C++11)
Interprets an integer value in a byte string pointed to by str.
Discards any whitespace characters until the first non-whitespace character is found, then takes as many characters as possible to form a valid integer number representation and converts them to an integer value. The valid integer value consists of the following parts:
* (optional) plus or minus sign
* numeric digits
Parameters
str - pointer to the null-terminated byte string to be interpreted
Return value
Integer value corresponding to the contents of str on success. If the converted value falls out of range of corresponding return type, the return value is undefined. If no conversion can be performed, 0 is returned.
Example
// Run this code
Output:
See also
stoi
stol
stoll converts a string to a signed integer
(C++11)
(C++11)
(C++11)
strtol (function)
strtoll
strtoul (function)
strtoull