Ubuntu下int转字符串

前端之家收集整理的这篇文章主要介绍了Ubuntu下int转字符串前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
#include<stdio.h>
#include<stdlib.h>
voidmain(void)
{
intnum=100;
charstr[25];
sprintf(str,"%d",num);
printf("Thenumber'num'is%dandthestring'str'is%s.\n",num,str);
}

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

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

猜你在找的Ubuntu相关文章