C语言用qsort函数对二维数组第一列排序,这个

2024-12-16 09:34:50
推荐回答(1个)
回答1:

int cmp(const void *p1,const void *p2)
{
return *((int*)p2)-*((int*)p1);
}