现在的位置: 首页 > 综合 > 正文

整型和字符串的相互转化

2018年01月22日 ⁄ 综合 ⁄ 共 453字 ⁄ 字号 评论关闭

整型和字符串的相互转化

 

atoi, atol, atoll, atoq -- convert a string to an integer

相关函数: atof, atol, atrtod, strtol, strtoul

表头文件: #include <stdlib.h>

定义函数: int atoi(const char *nptr);

函数说明: atoi()会扫描参数nptr字符串,跳过前面的空格字符,直到遇上数字或正负符号才开始做转换,而再遇到非数字或字符串结束时('\0‘)才结束转换,并将结果返回。

返回值:   返回转换后的整型数。

附加说明: atoi(nptr)与strtol(nptr, (char**)NULL, 10)结果相同

#include <stdlib.h>

#include <stdio.h>

main() {

    char     *a = "-100";

    char     *b = "456";

    int     c;

    c = atoi(a) + atoi(b); //356

    printf("c = %d\n", c);

}

整形转化为字符串的函数 itoa!

抱歉!评论已关闭.