
C将数组参数视为指针,因为这样做更省时且更高效。尽管我们可以将数组的每个元素的地址作为参数传递给函数,但这样做会更耗时。所以最好将第一个元素的基地址传递给函数,例如:
void fun(int a[]) {…}void fun(int *a) { //more efficient.…..}
Here is a sample code in C:
#includevoid display1(int a[]) //printing the array content{ int i; printf("Current content of the array is:
"); for(i = 0; i < 5; i++) printf(" %d",a[i]);}void display2(int *a) //printing the array content{ int i; printf("
Current content of the array is:
"); 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 6Current content of the array is:4 2 7 9 6
以上就是为什么C将数组参数视为指针?的详细内容,更多请关注创想鸟其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 chuangxiangniao@163.com 举报,一经查实,本站将立刻删除。
发布者:程序猿,转转请注明出处:https://www.chuangxiangniao.com/p/1444673.html
微信扫一扫
支付宝扫一扫