/* A program that prints the transpose of a given matrix. */ #include using namespace std; void transpose( double A[2][2] ) { double B[2][2] ; for (unsigned int i =0 ; i < 2 ; ++i) { for (unsigned int j =0 ; j < 2 ; ++j) { B[i][j] = A[j][i]; cout << " \t transpose A["<