Cygwin 中的分段错误和默认变量初始化

问题描述 投票:0回答:1

为什么当我在 Cygwin 中编译时,

if
语句会导致分段错误?不过,通过 GCC 在 Linux 中编译是可行的。

经过一番研究,我发现这可能是因为

struct int
变量默认没有初始化为 0 ?

但是,C 不是将所有全局变量和静态变量初始化为 0 吗?

struct test
是一个全局结构体,那么为什么它不初始化为0呢?

int x;  
int count = 20;

struct test {
        int ID;
       };
       typedef struct test GG;
       GG *ptr[200];

    int main(int argc, char const *argv[])
    {
        for(x = 0; x<count; x++) {
            if(!(*ptr[x]).ID){
                printf("true\n");
            }
        }
        return 0;
    }
c gcc struct cygwin
1个回答
3
投票

GG *ptr[200];
ptr 是指向 GG 类型结构的指针数组。您正在尝试访问这些没有任何内存位置的指针。

您需要为该数组的每个指针分配内存,如下所示 -

  for(x = 0; x<200; x++)
ptr[x] = malloc(sizeof(struct test));
© www.soinside.com 2019 - 2024. All rights reserved.