我写了这段代码,但它没有正常工作

时间:2017-12-19 18:44:00

标签: c string dynamic-memory-allocation

我正在编写一个代码,它接受用户想要的长度字符串并显示它。这就是我写的

#include<stdio.h>
#include<stdlib.h>
void main()
{
  char *a;
  int i,n;
  a=(char*)calloc(1,sizeof(char));
  printf("enter the string\t");
  for(i=0;a[i]!=0;i++)
  {
        scanf("%[^0]c",&a[i]);
        n=2+i;
        a=(char*)realloc(a,(n)*sizeof(char));
  }
  for(i=0;a[i]!=0;i++)
  {
        printf("%c",a[i]);
  }
  free(a);
  a=NULL;
}

但它没有进入循环并接受任何输入。你能告诉我出了什么问题吗?致谢

1 个答案:

答案 0 :(得分:1)

您没有进入循环,因为您使用a分配了calloc,因此a[0]为0.这将使您a[i]!=0的{​​}初始for测试失败1}}循环。