qsort()

Syntax:

#include <stdlib.h>
 void qsort( void *buf, size_t num, size_t size, int (*compare)(const void *, const void *) );



Description:
The qsort() function sorts buf (which contains num items, each of size size) using Quicksort. The compare function is used to compare the items in buf. compare should return negative if the first argument is less than the second, zero if they are equal, and positive if the first argument is greater than the second. qsort() sorts buf in ascending order.

Related Topics:
bsearch()

Vadim avatar

Vadim