Driver program to test insertion sort */
| 38 | |
| 39 | /* Driver program to test insertion sort */ |
| 40 | int main() |
| 41 | { |
| 42 | int arr[] = {12, 11, 13, 5, 6}; |
| 43 | int n = sizeof(arr)/sizeof(arr[0]); |
| 44 | |
| 45 | insertionSortRecursive(arr, n); |
| 46 | printArray(arr, n); |
| 47 | |
| 48 | return 0; |
| 49 | } |
nothing calls this directly
no test coverage detected