在下面的代码中,我在最后一个 for 循环之后一直崩溃。我无法通过使用 Netbeans 进行调试来弄清楚。for 循环有效,并打印出我想要打印的内容,但随后程序崩溃而不是成功终止。你能帮忙吗(我知道gets,我会尽快尝试fgets)?
代码:
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main()
{
char *str,**string,buffer[50],temp[2];
int i,j,size,counter;
size=1;
string=(char**) calloc(size,sizeof(char*));
for (i=0; i<size; i++) string[i]=(char*)malloc(50*sizeof(char));
printf("\nGimme strings, terminate input with x");
i=0;
gets(string[i]);
temp[0]=120;//x
temp[1]='\0';
size=2;
while(strcmp(string[i],temp)!=0)
{
string=realloc(string,size*sizeof(char**));
i++;
string[i]=malloc(50*sizeof(char));
gets(string[i]);
size++;
counter++;
}
for(i=0; i<=counter; i++) printf("\n%s",string[i]);
return 0;
}