我正在尝试在函数中传递指向数组的指针并将其返回。问题是在正确初始化函数后返回一个 NULL 指针。谁能告诉我,我的逻辑有什么问题?
这是我的函数,其中声明了数组:
void main()
{
int errCode;
float *pol1, *pol2;
pol1 = pol2 = NULL;
errCode = inputPol("A", pol1);
if (errCode != 0)
{
return;
}
// using pol1 array
c = getchar();
}
这是带有初始化的函数:
int inputPol(char* c, float *pol)
{
pol= (float *) calloc(13, sizeof( float ) );
while( TRUE )
{
// While smth happens
pol[i] = 42;
i++;
};
}