Social Icons

twitterfacebookgoogle plusrss feedemail

5/05/2013

解決 linux 沒有 itoa 問題解法

沒有留言:

因為在ANSI-C 與一些compiler中並沒有支援
所以在linux裡沒有itoa(int , char[] ,int) 這個函數
不過可用sprintf(str , "%d" ,i) 代替

itoa( 456 , str , 10)
sprintf(str, "%d" ,456)