atoi函数的用法

Posted feifanren

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了atoi函数的用法相关的知识,希望对你有一定的参考价值。

库函数原型:

#inclue <stdlib.h>

int atoi(const char *nptr);

用法:将字符串里的数字字符转化为整形数。返回整形值。

注意:转化时跳过前面的空格字符,直到遇上数字或正负符号才开始做转换,而再遇到非数字或字符串结束时(‘/0‘)才结束转换,并将结果返回。

#include <stdio.h>
#include <stdlib.h>

int main()
{
    char *ptr1 = "-12345.12";
    char *ptr2 = "+1234w34";
    char *ptr3 = "   456er12";
    char *ptr4 = "789 123";
    int a,b,c,d;

    a = atoi(ptr1);
    b = atoi(ptr2);
    c = atoi(ptr3);
    d = atoi(ptr4);

    printf("a = %d, b = %d, c = %d, d = %d/n", a,b,c,d);

    return 0;
}

以上是关于atoi函数的用法的主要内容,如果未能解决你的问题,请参考以下文章

strtok/atoi/atof/atol函数用法 详解

atoi用法

atoi():str转int

c语言中,函数itoa有啥功能,怎么用

strtok函数怎么用啊?

C语言字符串相关函数使用示例 strtok_r strstr strtok atoi