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

Function main

Arrays/07_Linearsearch.c:25–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23 return -1;
24}
25int main ()
26{
27 struct Array arr1= {{2,3,4,2,3,4,5,88,9 },20,5 };
28 printf("The element is at %dth index",LinearSearch(arr1,88));
29 Display(arr1);
30 return 0;
31}

Callers

nothing calls this directly

Calls 2

LinearSearchFunction · 0.70
DisplayFunction · 0.70

Tested by

no test coverage detected