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/spiralprint.cpp:45–56 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
43
}
44
}
45
int main(){
46
int n=4;
47
int m=4;
48
int arr[][10] = { {1, 2, 3, 4},{12, 13, 14, 5},{11, 16, 15, 6},{10, 9, 8, 7}};
49
50
spiral(arr,n,m);
51
52
53
54
55
return 0;
56
}
57
58
59
Callers
nothing calls this directly
Calls
1
spiral
Function · 0.85
Tested by
no test coverage detected