如何用c定义一个未知长度的整型数组a

如题所述

除常量数组外,数组必须是定长的,如果不知道长度,有几种办法,固定分配一个你认为不会出现的维度值,或者对数组进行动态分配,如:
int *pArray,nCount;
int Insert(int * pArray,int nCount,int nElement)
{
int *pInt;

pInt = new int[nCount+1];
if(nCount>0)memcpy(pInt,nArray,nCount);
pInt[nCount++] = nElement ;
if(pArray)delete pArray;
pArray = pInt;
return nCount;
}

main()
{
nCount = 0,pArray = NULL;
nCount = Insert(pArray,nCount,99);
}
温馨提示:内容为网友见解,仅供参考
无其他回答
相似回答