itoa,atoi ##占位
Posted YuRi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了itoa,atoi ##占位相关的知识,希望对你有一定的参考价值。
itoa
itoa(数值,char *buf,进制);
# include <stdio.h> # include <stdlib.h> int main (void) { int num = 100; char str[25]; itoa(num, str, 10); printf("The number ‘num‘ is %d and the string ‘str‘ is %s. \n" ,num, str); return 0; }
以上是关于itoa,atoi ##占位的主要内容,如果未能解决你的问题,请参考以下文章
C语言itoa()函数和atoi()函数详解(整数转字符C实现)
剑指offer 把数组排成最小的数 atoi和itoa,pow