C语言 int 转String, 查了一些资料,都谈到了 itoa
其实,在Linux下,itoa 不存在,至少stdlib.h里面是没有的。
变通方式是:举例:
int pd; pd=getpid(); char cpd[10]; sprintf(cpd,"%d",pd);