通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
如下函数的功能是:通过键盘输入数据,为数组中的所有元素赋值。
#include<stdio.h> #define N 10 void fun(int x[N]) { int i=0; while(i<N) scanf("%d", ); }
在程序中下划线处应填入的是( )