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/reverse_array.cpp:19–31 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
17
#endif
18
}
19
int main(){
20
initial();
21
int arr[]={12,55,66,77,97,987};
22
int n= sizeof(arr)/ sizeof(int);
23
reverse(arr,n);
24
for (int i = 0; i < n; ++i)
25
{
26
cout<<arr[i]<<endl;
27
}
28
29
30
return 0;
31
}
Callers
nothing calls this directly
Calls
2
initial
Function · 0.70
reverse
Function · 0.70
Tested by
no test coverage detected