+ 7
Is there a built-in function in C that can be used for sorting data?
C
2 Respuestas
+ 3
There is a quick sort function in the standard library.
void qsort(void* base, size_t niteams, size_t size, int (*compare) (const void*, const void*))
+ 3
Yes there is...Its called the "qsort"(quick sort)..But you'll have to write a bit of code for it to work....