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

Function printarr

CPP/array-2d/inpout.cpp:8–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6#define mod 1000000007
7#define endl '\n'
8void printarr(int arr[][1000],int n,int m){
9 for (int i = 0; i < n; i++) {
10 for (int j = 0; j < m; j++) {
11 cout<<arr[i][j]<<" ";
12 }
13 cout<<endl;
14 }
15}
16int main(){
17 cin.tie(0)->sync_with_stdio(0);
18 int arr[1000][1000];

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected