下面这段代码如何实现排序问题
int cmp(const void *a,const void *b){
return *(int*)b - *(int*)a;
}
qsort(score,N,sizeof(int),cmp);
..........................