1. 程式人生 > >Ubuntu下int轉字符串

Ubuntu下int轉字符串

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轉字符串