ANSI C,整数到字符串没有可变参数函数

时间:2010-01-26 08:31:54

标签: c string integer itoa

我目前正在使用支持ANSI C的PLC,但使用自己的GNU编译器,它不会编译任何可变函数和像itoa这样的东西。所以使用sprintf&合。不是将整数转换为字符串的选项。任何人都可以引导我到一个网站,其中列出了强大的,无sprintf的itoa实现或在此发布合适的算法?提前谢谢。

2 个答案:

答案 0 :(得分:6)

这是来自K& R:

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);
} 

reverse()只是反转一个字符串。

答案 1 :(得分:1)

仅仅为了完整性而且作为其他可能偶然发现主题的参考,我将这个链接添加到itoa itoa recursively的递归实现中我喜欢它因为它的简单之美,但不能用于我的目标系统。