MCPcopy Create free account
hub / github.com/chaharnishant11/CodeIn10DSA / main

Function main

Recursion/Homework/reverse.cpp:18–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16 }
17}
18int main() {
19 int t;
20 cin>>t;
21 while(t--){
22 cin>>n;
23 int s[n];
24 for (int i=0;i<n;i++){
25 cin>>s[i];
26 }
27 helper(s,0,n-1);
28 //code
29 }
30 return 0;
31}

Callers

nothing calls this directly

Calls 1

helperFunction · 0.70

Tested by

no test coverage detected