通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
fun(int *b,int c,int d) { int k; for(k=0;k<c*d;k++) { *b=c+d; b++; } }
则调用此函数的正确写法是(假设变量a的说明为int a[10])( )。