红联Linux门户
Linux帮助

实现在linux下的itoa函数

发布时间:2016-05-07 15:54:46来源:linux网站作者:Linux_痞子

在linux系统中虽然自带了atoi()函数,但是没有对应的itoa()函数,那就自己实现吧!


1、自己实现itoa()

void itoa(int i,char* string)
{
int power,j;
j=i;
for(power=1;j>=10;j/=10)
power*=10;
for(;power>0;power/=10)
{
*string++='0'+i/power;
i%=power;
}
*string='\0';
}


2、吸收一些输入函数多余的输入字符

while((ch = getchar()) != '\n');


本文永久更新地址:http://www.linuxdiyf.com/linux/20428.html