首页 > 代码库 > Ubuntu下int转字符串

Ubuntu下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转字符串