Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/codemistic/Data-Structures-and-Algorithms
/ main
Function
main
CPP/array-2d/subarray.cpp:20–32 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
18
}
19
20
int main(){
21
initial();
22
int n;
23
cin>>n;
24
int arr[n];
25
for (int i = 0; i < n; ++i)
26
{
27
cin>>arr[i];
28
}
29
sub_array(arr,n);
30
31
return 0;
32
}
Callers
nothing calls this directly
Calls
2
sub_array
Function · 0.85
initial
Function · 0.70
Tested by
no test coverage detected