我在C以下代碼:如何在C中調用一個函數的參數?
void getNumber(int numberArray[])
{
printf("The size of the array is %u", sizeof(numberArray));
}
void main()
{
int array[6] = {1,2,3,4,5,6};
getNumber(array);
}
但爲什麼The size of the array is 4
?以及如何獲得整個數組的大小?
這不是千篇一律的重複嗎?你有沒有花費任何時間尋找類似的問題? –