Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/codemistic/Data-Structures-and-Algorithms
/ Array
Class
Array
Arrays/07_Linearsearch.c:2–7 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
#include<stdio.h>
2
struct Array {
3
int A[20];
4
int length;
5
int size;
6
7
};
8
void Display (struct Array arr)
9
{
10
int i;
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected