** 你好 :)
所以我有这个任务来编写一个程序,它将使用 malloc 将 int 转换为 arg 并且一切正常,gdb 没有显示任何错误,但它没有以这种形式打印任何输出。如果我删除 itoa_buffer[i] = '\0'; 有时它有时不显示输出。我不知道这里出了什么问题,似乎还不错。
我不知道在哪里寻求帮助,因为我喜欢按照我的逻辑在这里找到错误,而不是从互联网上复制解决方案。我会很感激一些提示,它可能是一些我不知道的小事,不会让我走得更远。**
#include<stdio.h>
#include "libft.h"
char *ft_itoa(int n)
{
int i;
int z;
char x;
char *itoa_buffer;
if (n == INT_MIN)
return(ft_strdup("-2147483648"));
if (n < 0)
{
n = -n;
z = n;
i = 1;
}
else
{
z = n;
i = 0;
}
while(z > 0)
{
z = z/10;
i++;
}
if(!(itoa_buffer = (char *)malloc((i+1)*sizeof(char))))
return(0);
i = i + 1;
while(--i)
{
x = (n%10 + '0');
itoa_buffer[i] = x;
n = n/10;
if(n == 0 && i == 2)
{
i--;
itoa_buffer[i] = '-';
i--;
break;
}
}
itoa_buffer[i] = '\0'; // it stopped showing answers when i tried to add this symbol at the end.
return(itoa_buffer);
}
int main()
{
int n;
n = 1980;
printf("%s", ft_itoa(n));
}