| 8 | int length; |
| 9 | }; |
| 10 | void Display(struct Array* arr) |
| 11 | { |
| 12 | int i; |
| 13 | cout << "the elements of the array is " << endl; |
| 14 | for (i = 0; i < arr->length; i++) |
| 15 | cout <<arr->A[i] << " "; |
| 16 | } |
| 17 | |
| 18 | int IsSorted(struct Array* arr) |
| 19 | { |
nothing calls this directly
no outgoing calls
no test coverage detected