write c+ code to check if a matrix is symmetric. Return Value should be Boolean for your Function. Values of the matrix should be user’s Input. A square matrix is said to be symmetric matrix if the transpose of the matrix is same as the given matrix Symmetric matrix can be obtain by changing row to column and column to row. Input: 1 2 3 2 1 4 3 4 3 Transpose of the
OR
OR