首页 > 代码库 > 函数指针
函数指针
排序函数qsort
1 #include <stdio.h> 2 3 int compare (const void * a, const void * b) 4 { 5 return *(int *)a - *(int *)b; 6 } 7 int main (void) 8 { 9 int arr[15] = {999, 23, 39, 23, 199, 1, 23, -432, 1, 0, 23, -32, 235, 13, 2};10 11 int i;12 for (i = 0; i < 15; i++)13 {14 printf ("%5d ", arr[i]);15 }16 printf ("\n");17 18 qsort (arr, 15, sizeof (int), compare);19 20 for (i = 0; i < 15; i++)21 {22 printf ("%5d ", arr[i]);23 }24 printf ("\n");25 }
函数指针
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。