forked from dharmanshu1921/Java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2dArrayInFunction.cpp
More file actions
40 lines (31 loc) · 694 Bytes
/
Copy path2dArrayInFunction.cpp
File metadata and controls
40 lines (31 loc) · 694 Bytes
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
#include <iostream>
using namespace std;
void printArray(int a[][100] , int n , int m)
{
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
cout << a[i][j] <<"\t";
}
cout << endl;
}
}
int main()
{
int a[100][100], n , m;
cout << "Enter the number of rows of array : ";
cin >> n;
cout << "Enter the numbers of coloumns of array : ";
cin>>m ;
cout << "Enter the array elements :";
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
cin >> a[i][j];
}
}
printArray(a , n , m);
return 0;
}