首頁  >  文章  >  後端開發  >  為什麼C將陣列參數視為指標?

為什麼C將陣列參數視為指標?

王林
王林轉載
2023-09-08 13:17:021421瀏覽

為什麼C將陣列參數視為指標?

C將陣列參數視為指針,因為這樣做更省時且更有效率。儘管我們可以將陣列的每個元素的位址作為參數傳遞給函數,但這樣做會更耗時。所以最好將第一個元素的基底位址傳遞給函數,例如:

void fun(int a[]) {
…
}
void fun(int *a) { //more efficient.
…..
}

Here is a sample code in C:

#include

void display1(int a[]) //printing the array content
{
   int i;
   printf("</p><p>Current content of the array is: </p><p>");
   for(i = 0; i < 5; i++)
      printf(" %d",a[i]);
}

void display2(int *a) //printing the array content
{
   int i;
   printf("</p><p>Current content of the array is: </p><p>");
   for(i = 0; i < 5; i++)
      printf(" %d",*(a+i));
}
int main()
{
   int a[5] = {4, 2, 7, 9, 6}; //initialization of array elements

   display1(a);
   display2(a);
   return 0;
}

輸出

#
Current content of the array is:
4 2 7 9 6
Current content of the array is:
4 2 7 9 6

以上是為什麼C將陣列參數視為指標?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除