SPARSE MATRIX
a sparse matrix is a matrix in which most of the elements are zero
In the below program we take a sparse matrix as an input and display another resultant matrix
eg:
| 2(0,0) 0(0,1) 0(0,2) 0(0,3) | | 4 4 4 |
| 0(1,0) ...