Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
}
25
int 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
LinearSearch
Function · 0.70
Display
Function · 0.70
Tested by
no test coverage detected