gpt4 book ai didi

c - qsort 没有对字符串数组进行排序

转载 作者:行者123 更新时间:2023-12-04 10:38:53 26 4
gpt4 key购买 nike

<分区>

我尝试使用 qsort 对字符串数组进行排序。这是我的数组的内容:

{"a","orange","apple","mobile","car"}

这就是我使用 qsort 的方式:

int myCompare (const void * a, const void * b ) {
const char *pa = (const char*)a;
const char *pb = (const char*)b;
return strcmp(pa,pb);
}

int stringLen = sizeof(input)/sizeof(char *);
qsort(input, stringLen, sizeof (char*), myCompare);

但是,当我打印数组时,没有任何改变。这有什么问题吗?

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com