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

Function main

Arrays/14_Mergeing_2_Array.c:41–50  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

39 return arr3;
40}
41int main()
42{
43 struct Array arr1={{2,9,21,28,35},10,5};
44 struct Array arr2={{2,3,16,18,28},10,5};
45 struct Array *arr3;
46arr3=Merge(&arr1,&arr2);
47Display(*arr3);
48
49return 0;
50}
51

Callers

nothing calls this directly

Calls 2

MergeFunction · 0.70
DisplayFunction · 0.70

Tested by

no test coverage detected