int main(void){
char *p[]={};
char *temp=NULL;
int end=0;
char y_n=0;
int w=0; //pointer array subscript
int gc=1;
while(true){
printf("enter content:\n");
while((end=getchar())!='\n'){
if(gc==1){
p[w]=(char *)calloc(gc,sizeof(char));
strcat(p[w],(char *)&end);
}
else{
temp=(char *)realloc(p[w],gc*sizeof(char));
if(temp==NULL){
printf("memory fail\n");
break;
}
p[w]=temp;
/*here temp and p[w] reference same address
so temp pointer set value is NULL break reference address
so temp pointer not use free function.
if temp pointer use free function,at the same time clean p[w] in memory address.
*/
temp=NULL;
strcat(p[w],(char *)&end);
}
gc++;
}
printf("p[%d]:%s\n", w,p[w]);
gc=1;
w++;
printf("continue y or n:");
scanf("%c",&y_n);
if(y_n=='n'){
break;
}
getchar();
}
printf("w:%d\n", w);
/*test*/
while((--w)>=0){
printf("p[%d]:%s\n", w,p[w]);
free(p[w]);
p[w]=NULL;
}
return 0;
}
---------------------------------
初始值 w=0,循环到 p[w=0] error:Segmentation fault (core dumped)
初始值 w=1 开始
循环p指针数组没问题
为什么?没有初值指针数组,下标不能从0开始?</p>