Driver Code
| 63 | |
| 64 | // Driver Code |
| 65 | int main() |
| 66 | { |
| 67 | int arr[] = { 10, 7, 8, 9, 1, 5 }; |
| 68 | int n = sizeof(arr) / sizeof(arr[0]); |
| 69 | quickSort(arr, 0, n - 1); |
| 70 | cout << "Sorted array: \n"; |
| 71 | printArray(arr, n); |
| 72 | return 0; |
| 73 | } |
nothing calls this directly
no test coverage detected