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

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

程序员文章站 2022-06-06 07:53:30
...
#include <stdio.h>
//#include <stdlib.h>
int square(int i)
{
    return i*i;
}
int main()
{
    int i=0;
    i=square (i);
    for (;i<3;i++)
    {
        static int i=1;
        i+=square (i);
        printf("%d,",i);
    }
    printf("%d\n",i);
    return 0;
}

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