数组
数组是一组具有相同名称的相关项。以下是将数组作为参数传递给函数的两种方式:
将整个数组作为参数传递给函数
示例1
#include<stdio.h> main (){ void display (int a[5]); int a[5], i; clrscr(); printf ("enter 5 elements"); for (i=0; i<5; i++) scanf("%d", &a[i]); display (a); //calling array getch( ); } void display (int a[5]){ int i; printf ("elements of the array are"); for (i=0; i<5; i++) printf("%d ", a[i]); }
输出
Enter 5 elements 10 20 30 40 50 Elements of the array are 10 20 30 40 50
示例 2
让我们考虑另一个示例,以了解有关将整个数组作为参数传递给函数的更多信息 -
#include<stdio.h> main (){ void number(int a[5]); int a[5], i; printf ("enter 5 elements"); for (i=0; i<5; i++) scanf("%d", &a[i]); number(a); //calling array getch( ); } void number(int a[5]){ int i; printf ("elements of the array are
"); for (i=0; i<5; i++) printf("%d
" , a[i]); }
输出
enter 5 elements 100 200 300 400 500 elements of the array are 100 200 300 400 500
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。