diff --git a/sorting/quick_sort.c b/sorting/quick_sort.c index 6a0c8768..886cd0f8 100644 --- a/sorting/quick_sort.c +++ b/sorting/quick_sort.c @@ -93,5 +93,6 @@ int main() printf("Sorted array: "); display(arr, n); // Sorted array : 3 4 7 8 8 9 10 11 getchar(); + free(arr); return 0; }