色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

c語言中怎么定義一個沒有長度的數(shù)組

林子帆2年前70瀏覽0評論

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);

}