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

Function main

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

Source from the content-addressed store, hash-verified

14 }
15}
16int main(){
17 cin.tie(0)->sync_with_stdio(0);
18 int arr[1000][1000];
19 int n,m;
20 cin >>n>>m;
21 for (int i = 0; i < n; i++) {
22 for (int j = 0; j < m; j++) {
23 cin>>arr[i][j];
24 }
25
26 }
27 printarr(arr,n,m);
28 return 0;
29}
30
31

Callers

nothing calls this directly

Calls 1

printarrFunction · 0.85

Tested by

no test coverage detected