c語言中怎么定義一個沒有長度的數(shù)組?
除常量數(shù)組外,數(shù)組必須是定長的,如果不知道長度,有幾種辦法,固定分配一個認為不會出現(xiàn)的維度值,或者對數(shù)組進行動態(tài)分配,如:
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);
}
上一篇想先學python