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

Function main

Arrays/16_Set_Operation.c:105–114  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

103 return arr3;
104}
105int main()
106{
107 struct Array arr1={{2,9,21,28,35},10,5};
108 struct Array arr2={{2,3,9,18,28},10,5};
109 struct Array *arr3;
110arr3=Union(&arr1,&arr2);
111Display(*arr3);
112
113return 0;
114}

Callers

nothing calls this directly

Calls 2

UnionFunction · 0.85
DisplayFunction · 0.70

Tested by

no test coverage detected