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中文網其他相關文章!