Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/codemistic/Data-Structures-and-Algorithms
/ Display
Function
Display
Arrays/16_Set_Operation.c:11–17 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
9
int length;
10
};
11
void Display(struct Array arr)
12
{
13
int i;
14
printf(
"\nElements are\n"
);
15
for(i=0;i<arr.length;i++)
16
printf(
"%d "
,arr.A[i]);
17
}
18
struct Array* Union(struct Array *arr1,struct Array *arr2)
19
{
20
int i,j,k;
Callers
1
main
Function · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected