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

Function print

CPP/array-2d/rodate_array.cpp:23–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21 }
22}
23void print(int arr[ ],int n)
24{
25 for(int i=0;i<n;i++){
26 cout<<arr[i]<<endl;
27 }
28}
29int main()
30{
31 int n,i,d, arr[10];

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected