Parameters of qsort()

The qsort() function takes four parameters:

  • *base: Pointer to the first element of the array.
  • num: Number of elements in the array.
  • size: Size of each element in an array.
  • *compare: Function pointer to a comparison function that compares two elements.

qsort() Function in C

The qsort() function in C is a predefined function in the stdlib.h library that is used to sort an array of items in ascending order or descending order. It stands for “quick sort,” as it implements the quicksort algorithm for sorting which is one of the fastest and most efficient algorithm to sort elements of an array.

Similar Reads

Syntax of qsort() in C

void qsort(void* base, size_t num, size_t size, int (*compare)(const void*, const void*));...

Parameters of qsort()

The qsort() function takes four parameters:...

Return Value of qsort()

The qsort() function does not return any value as it sorts the array in place by modifying the original array only....

qsort() Comparator Function

The most important part of the qsort() is the comparator function that is passed as a parameter to the qsort() function. The comparator function takes two pointers as arguments that are type casted to const void* and it contains the logic to compare two elements to get the desired order i.e the order in which we want to sort the elements (ascending, descending or any other)....

Example of qsort() in C

Input: arr = [4, 2, 5, 3, 1]Output: Sorted Array: 1 2 3 4 5...