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

Function Display

Arrays/04_Array_ADT.c:12–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10// fxn for display all the elements of the array
11
12void Display(struct Array arr)
13{
14 int i;
15 printf("Elements Are\n");
16 for (i = 0; i < arr.length; i++)
17 printf("%d ",arr.A[i]); // it will display all the elements
18}
19int main()
20{
21 struct Array arr;

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected