执行下方程序,运行的结果是( )。
#include <stdio.h>
static int i=10;
void func()
{
i++;
printf("i的值是多少%d\n",i);
}
int main()
for(int i=0;i<10;i++)
func();
return 0;