MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / main

Function main

CPP/array-2d/all_pairs.cpp:14–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12}
13
14int main(){
15 int n;
16 cin>>n;
17 int arr[n];
18 for (int i = 0; i < n; ++i)
19 {
20 cin>>arr[i];
21 }
22 all_pair(arr, n);
23
24 return 0;
25}

Callers

nothing calls this directly

Calls 1

all_pairFunction · 0.85

Tested by

no test coverage detected