-
Notifications
You must be signed in to change notification settings - Fork 2
/
arraypointers.cpp
60 lines (59 loc) · 1.1 KB
/
arraypointers.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
52
53
54
55
56
57
58
59
60
#include <iostream>
using namespace std;
class array
{
private:
int *val;
int rsum, csum, r, c, i, j;
public:
array();
void display();
};
array::array()
{
cout << "enter the no. of rows and column" << endl;
cin >> r >> c;
val = new int[r * c];
cout << "enter the elements" << endl;
for (i = 0; i < r; i++)
{
for (j = 0; j < c; j++)
{
cin >> val[i * c+j];
}
}
}
void array::display()
{
for(i=0;i<r;i++)
{
for(j=0;j<c;j++)
{
cout<<val[i*c+j];
}
cout<<endl;
}
// for (i = 0; i < r; i++)
// {
// rsum = 0;
// for (j = 0; j < c; j++)
// {
// rsum = rsum + val[i * j];
// }
// cout << "the sum of" << i + 1 << "row is" << rsum<<endl;
// }
// for (j = 0; j < r; j++)
// {
// csum = 0;
// for (i = 0; i < c; i++)
// {
// csum = csum + val[i * j];
// }
// cout << "the sum of" << j + 1 << "column is" << csum<<endl;
// }
}
int main()
{
array z;
z.display();
}