close

http://en.wikipedia.org/wiki/Itoa




/* itoa:  convert n to characters in s */
void itoa(int n, char s[])
{
int i, sign;

if ((sign = n) < 0) /* record sign */
n = -n; /* make n positive */
i = 0;
do { /* generate digits in reverse order */
s[i++] = n % 10 + '0'; /* get next digit */
} while ((n /= 10) > 0); /* delete it */
if (sign < 0)
s[i++] = '-';
s[i] = '\0';
reverse(s);
}

#include <string.h>

/* reverse: reverse string s in place */
void reverse(char s[])
{
int c, i, j;

for (i = 0, j = strlen(s)-1; i<j; i++, j--) {
c = s[i];
s[i] = s[j];
s[j] = c;
}
}

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 UbuntuLinux 的頭像
    UbuntuLinux

    UbuntuLinux

    UbuntuLinux 發表在 痞客邦 留言(0) 人氣()