填空题

以下程序运行后的输出结果是 。 int a=5; fun(int b) static int a=10; a+=b++; printf("%d",a); main() int c=20; fun(c); a+=c++; printf("%d\\n",a);

【参考答案】

30 25