力扣 报错 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};