力扣 报错 runtime error: load of null pointer of type 'const int'

runtime error: load of null pointer of type 'const int'

要求返回的是int*

解决方案

1.指针使用malloc分配空间

int * p = (int * )malloc(sizeof(int)*2);取代 int a[2]={0};

2.使用static

static int a[2]={0}; 取代 int a[2]={0};

原文地址:https://www.cnblogs.com/lick468/p/10648771.html