Quicksort algorithm using the middle element as pivot in C to sort an array of integers. Section 4.10 of The C Programming Language.
- QuickSort sorting algorithm to sort an array of integers in increasing order using middle element as pivot.
- Using swap.c to swap two elements in-place in the array.
- Recursion in C.
- Splitting source file into multiple files.