-1
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>

4

1 回答 1

4
char *p[]={};

不是有效的 C,但它是 GNU 扩展(也被 clang 接受),因此 gcc 接受代码。

然而,它所做的是声明一个大小为 0pchar*s 数组。因此,使用 anyp[w]会调用未定义的行为。是否崩溃取决于您的运气。如果你幸运的话,它总是会崩溃。

您需要声明p所需的大小。如果你不知道你需要多少个元素,把它做成一个char**malloc/realloc它。

于 2013-06-23T10:43:40.027 回答