美文网首页
C语言库函数 char* 和 int 之间的相互转换

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

作者: 烟花繁江尘辗 | 来源:发表于2021-06-29 20:42 被阅读0次
    • 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 之间的相互转换

          本文链接:https://www.haomeiwen.com/subject/dqwkultx.html