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

Function main

Arrays/15_InsertSort .c:36–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34
35
36int main()
37
38{
39 struct Array arr={{2,3,5,10,15},5,20};
40 InsertSort(&arr,1);
41 Display(arr);
42 return 0;
43}

Callers

nothing calls this directly

Calls 2

InsertSortFunction · 0.70
DisplayFunction · 0.70

Tested by

no test coverage detected