填空题
有以下程序:
#include<stdio.h>
int a=5;
void fun(int b)
int a=10;
a+=b; printf("%d", a);
main()
int c=20;
fun(c); a+=c; printf("%d\n", a);
程序运行后的输出结果是______。
【参考答案】
3025
热门
试题
填空题
有以下程序: #include<stdio.h> main() int a[3][3]=1, 2, 3, 4, 5, 6, 7, 8, 9; int b[3]=0, i; for(i=0; i<3; i++) b[i]=a[i][2]+a[2][i]; for(i=0; i<3; i++) printf( %d , b[i]); printf( n ); 程序运行后的输出结果是______。