Convert a C string to a number

Source: Internet
Author: User

Int atoi (const char * Str) // Convert string to integer
Ignore the white space in front of STR until the first non-white space character is encountered. If the first non-white space character is a plus or minus sign or number, convert as long as possible to a number. If no valid conversion result is returned, 0 is returned. If the converted value exceeds the int value range, int_max or int_min is returned.

 

Long int atol (const char * Str)// Convert string to long integer
Refer to atoi.

 

Long int strtol (const char * nptr, char ** endptr, int Base)// Convert string to long integer
This function converts the nptr parameter to the Growth integer number based on the base parameter. The base parameter ranges from 2 to 36, or 0. The base parameter indicates the base mode. For example, if the base value is 10, the base value is 10. If the base value is 16, the base value is hexadecimal. When the base value is 0, 10 is used for conversion, however, if the '0x 'prefix is used for hexadecimal conversion, and if the '0' prefix is not '0x', the '8' prefix is used for conversion. At the beginning, strtol () scans the nptr parameter string and skips the leading space character until it starts to convert in case of a number or positive or negative sign, when a non-number or string ends ('\ 0'), the conversion ends and the result is returned. If the endptr parameter is not null, the character pointer in the nptr that is terminated due to an exception is returned by the endptr.

 

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.