MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / Display

Function Display

Arrays/13_IsSorted .cpp:10–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8 int length;
9};
10void 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
18int IsSorted(struct Array* arr)
19{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected