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

Function Display

Arrays/14_Mergeing_2_Array.c: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 printf("\nElements are\n");
14 for(i=0;i<arr.length;i++)
15 printf("%d ",arr.A[i]);
16}
17struct Array* Merge(struct Array *arr1,struct Array *arr2)
18{
19 int i,j,k;

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected