MCPcopy 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
20int 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_arrayFunction · 0.85
initialFunction · 0.70

Tested by

no test coverage detected