给定程序MODI1.C中,fun函数的功能是:删除b所指数组中小于10的数据。主函数中输出删除后数组中余下的数据。 #include #include #define N 20 int fun( int *b ) { int t[N] ,i, num for(i=0; 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 A. t=b[0]; B. t[num++]=b[i];或{t[num]=b[i]; num++;} C. t[num]=b; D. t[++num]=b[i]