Computer Science, asked by flyingsonu7367, 11 months ago

Write a c language program for addition of two sparse matrices.

Answers

Answered by Bakernancy444
1

Explanation:

the main logic is

if its the same row and

for (i=0;i<4;i++)

for (j=0;j<4;j++)

c[i][j]=a[i][j]+b[i][j];

Similar questions