using System; public class Exercise22 { public static void Main() { int i,j,r,c; int[,] arr1 = new int[50,50]; int[,] brr1 = new int[50,50]; Console.Write("\n\nTranspose of a Matrix :\n"); Console.Write("---------------------------\n"); Console.Write("\nInput the number of rows and columns of the first matrix :\n"); Console.Write("Rows : "); r = Convert.ToInt32(Console.ReadLine()); Console.Write("Columns : "); c = Convert.ToInt32(Console.ReadLine()); Console.Write("Input elements in the matrix :\n"); for(i=0; i