Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
}
41
int 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;
46
arr3=Merge(&arr1,&arr2);
47
Display(*arr3);
48
49
return 0;
50
}
51
Callers
nothing calls this directly
Calls
2
Merge
Function · 0.70
Display
Function · 0.70
Tested by
no test coverage detected