美文网首页
函数遍历输出数组元素(C语言)

函数遍历输出数组元素(C语言)

作者: 你好667 | 来源:发表于2017-08-25 10:21 被阅读0次
    # include <stdio.h>
    
    // 函数传数组的参数,需要确定两个参数   
    // 1.数组指针的首地址(数组名);
    // 2.数组的元素个数;
    void foreachArray(int * pArr , int len)
    {
        int i;
        for(i=0; i<len; i++){
         printf(" %d", pArr[i]);
        }
        printf(" \n");
    
    }
    
    int main(void)
    {
        int a[5] = {1,2,3,4,5};
        int b[3] = {1,33,77};
    
        foreachArray(a, 5);
    
        printf("%d \n" , a[2]);
    
        return 0;
    }
    
    

    相关文章

      网友评论

          本文标题:函数遍历输出数组元素(C语言)

          本文链接:https://www.haomeiwen.com/subject/ouqudxtx.html