Computer Science, asked by payalkithania, 6 months ago

input 3*3 matrix and print the sum of the coloum in different line​

Answers

Answered by raiyansyed
0

I have pined it above you can check it out.

Attachments:
Answered by Anonymous
0
Input: array[4][4] = { {1, 1, 1, 1},
{2, 2, 2, 2},
{3, 3, 3, 3},
{4, 4, 4, 4}};
Output: Sum of the 0 row is = 4
Sum of the 1 row is = 8
Sum of the 2 row is = 12
Sum of the 3 row is = 16
Sum of the 0 column is = 10
Sum of the 1 column is = 10
Sum of the 2 column is = 10
Sum of the 3 column is = 10
Similar questions