Header: stdlib.h
Syntax: void
qsort
(
void *base,
size_t nmemb,
size_t size,
int (*compar)(const void *, const void *)
);
Purpose: Sorts an array of nmemb objects, the initial member of which is pointed to by base. The size of the each object is specified by size.
|
|
|