-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path01_2D_array_basic.cpp
51 lines (43 loc) · 1.01 KB
/
01_2D_array_basic.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*
2D Array Basic
*/
#include <iostream>
using namespace std;
int main(){
int arr[4][3] = {0,4,5,7}; // 2D-Array 1
cout << "arr[4][3] = {0,4,5,7}" <<endl;
// Iterate over array
for(int row=0; row<4; row++){
for(int col=0; col<3;col++){
cout << arr[row][col] << " ";
}
cout << endl;
}
int arr2[1000][1000]= {0}; // 2D-Array 2
int m, n;
cout << "Enter Row & Col for 2D-Array: ";
cin >> m >> n; // user input
int val=1;
// Iterate over array
for(int row=0; row<=m-1; row++){
for(int col=0; col<=n-1; col++){
arr[row][col] = val; // assigning values
val++;
cout << arr[row][col] << " ";
}
cout << endl;
}
return 0;
}
/*
OUTPUT:
arr[4][3] = {0,4,5,7}
0 4 5
7 0 0
0 0 0
0 0 0
Enter Row & Col for 2D-Array: 3 3
1 2 3
4 5 6
7 8 9
*/