/* Programme to print transpose of matrix */
#include<stdio.h>
#include<conio.h>
void matrix(int x[3][3]);
void main()
{
int x[3][3],i,j;
clrscr();
printf("Enter elements of matrix:\n");
for(i=0;i<3;i++)
...
Programme to transpose a matrix
