C는 시간을 더 절약하고 효율적이기 때문에 배열 매개변수를 포인터로 처리합니다. 배열의 각 요소 주소를 매개변수로 함수에 전달할 수 있지만 그렇게 하면 시간이 더 많이 소요됩니다. 따라서 첫 번째 요소의 기본 주소를 함수에 전달하는 것이 더 좋습니다. 예:
void fun(int a[]) { … } void fun(int *a) { //more efficient. ….. }
다음은 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; }
output
Current content of the array is: 4 2 7 9 6 Current content of the array is: 4 2 7 9 6
위 내용은 C가 배열 매개변수를 포인터로 취급하는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!