C语言库函数 char* 和 int 之间的相互转换

  • int转为char *

       char *itoa (int value, char *str, int base );//将整型的数字变量转换为字符数组变量
    

    返回值:指向str的指针,无错误返回。

    参数说明:
    int value 被转换的整数,
    char *string 转换后储存的字符数组,
    int radix 转换进制数,如2,8,10,16 进制等,大小应在2-36之间。

  • char*转为int

    int atoi(const char *str) //把参数 str 所指向的字符串转换为一个整数(类型为 int 型)
    

    返回值:转换后的长整数,如果没有执行有效的转换,则返回零

  • atoi (表示 ascii to integer) ;itoa (表示 integer to ascii)

你可能感兴趣的:(C语言库函数 char* 和 int 之间的相互转换)