码迷,mamicode.com
首页 > 系统相关 > 详细

Ubuntu下int转字符串

时间:2017-07-11 17:45:02      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:int转换成字符串

# include <stdio.h>
# include <stdlib.h>
void main (void)
{
int num = 100;
char str[25];
sprintf(str,"%d",num);
printf("The number ‘num‘ is %d and the string ‘str‘ is %s. \n" ,num, str);
}

在Linux系统中并不支持itoa()和ltoa(),它们并不是C的标准库函数,只能在windows下使用。

● itoa():将整型值转换为字符串。
● ltoa():将长整型值转换为字符串。

本文出自 “帆布鞋也能走猫步” 博客,请务必保留此出处http://9409270.blog.51cto.com/9399270/1946387

Ubuntu下int转字符串

标签:int转换成字符串

原文地址:http://9409270.blog.51cto.com/9399270/1946387

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