c语言中数组作为参数进行传递

 

001、

[root@PC1 test]# ls
test.c
[root@PC1 test]# cat test.c            ## 测试c程序
#include <stdio.h>
int max_ay(int v[], int n);            // 函数原型声明
int main(void)
{
        int v[5] = {5, 8, 25, 59, 9};
        printf("the max is %d\n", max_ay(v,5));    // 数组作为实参传递
        return 0;
}
int max_ay(int v[], int n)                       // 定义函数,数组作为形参
{
        int i;
        int max = v[0];
        for(i = 0; i < n; i++)
        {
                if(max < v[i])
                {
                        max = v[i];
                }
        }
        return max;
}
[root@PC1 test]# gcc test.c -o kkk              ## 编译
[root@PC1 test]# ls
kkk  test.c
[root@PC1 test]# ./kkk                          ## 运算
the max is 59

 。

 

posted @ 2024-11-12 09:35  小鲨鱼2018  阅读(1)  评论(0编辑  收藏  举报