C基础-指针和数组等价转换

void foo(int *p,int n)
{
    int i;
    for(i=0;i<n;i++)
    {
        printf("%d\n",p[i]);
        //printf("%d\n",*(p+i));
    }
}

void main()
{
    int a[10];
    foo(a,10);
    system("pause");
}

 

posted @ 2015-09-19 09:59  微博和csdn还有你  阅读(435)  评论(0编辑  收藏  举报