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