在C语言中怎么把一个整数转化为字符串

日期:2016-08-07 10:24:44 人气:2

在C语言中怎么把一个整数转化为字符串

itoa函数就行了: #include#includeint main(){ char str[12]; int a = 123456; itoa(a,str,10); printf("%s\n",str); //system("pause"); return 0; }
    A+
热门评论