欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

8.1 分析并写出下面程序的运行结果

程序员文章站 2022-06-06 08:13:30
...
1#include<stdio.h>
void Func(int x)
{
    x=20;
}
int main()
{
    int x=10;
    Func(x);
    printf("%d\n",x);
    return 0;
}

8.1 分析并写出下面程序的运行结果

(2)

#include<stdio.h>
void Func(int b[])
{
    int j;
    for(j=0;j<4;j++)
    {
        b[j]=j;
    }
}
int main()
{
    static int a[]={5,6,7,8},i;
    Func(a);
    for(i=0;i<4;i++)
    {
        printf("%d\n",a[i]);
    }
    return 0;
}

8.1 分析并写出下面程序的运行结果