给定程序MODI1.C中,fun函数的功能是:删除b所指数组中小于10的数据。主函数中输出删除后数组中余下的数据。 #include #include #define N 20 int fun( int *b ) { int t[N] ,i, num for(i=0; i if(b[i]>=10) t[++num]=b[i]; /**********found**********/ _______________ b[i]=t[i]; return( num ); } main() { int a[N],i,num; printf("a数组中的数据 :\n"); for(i=0;i printf("\n"); num=fun(a); for(i=0;i printf("\n"); }