码迷,mamicode.com
首页 > 其他好文 > 详细

itoa,atoi ##占位

时间:2017-08-13 17:44:22      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:char   clu   ber   进制   color   ring   class   lib   int   

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 ##占位

标签:char   clu   ber   进制   color   ring   class   lib   int   

原文地址:http://www.cnblogs.com/tinaluo/p/7353955.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!