#include<stdio.h>
#include<conio.h>
void main()
{
int a[2][3],b[3][2];
int i,j,s=0,k;
printf("\n Enter the elements of the matrix=\n");
for(i=0;i<2;i++)
{
for(j=0;j<3;j++)
{ printf("a[%d][%d]=",i,j);
scanf("%d",&a[i][j]);
}
}
printf("\n The Given matrix is=\n");
for(i=0;i<2;i++)
{
for(j=0;j<3;j++)
{
printf("\t%d",a[i][j]);
}
printf("\n");
}
for(i=0;i<2;i++)
{
for(j=0;j<3;j++)
{
b[j][i]=a[i][j];
}
}
printf("Transpose of matrix=\n");
for(i=0;i<3;i++)
{
for(j=0;j<2;j++)
{
printf("\t%d",b[i][j]);
}
printf("\n");
}
getch();
}
#include<conio.h>
void main()
{
int a[2][3],b[3][2];
int i,j,s=0,k;
printf("\n Enter the elements of the matrix=\n");
for(i=0;i<2;i++)
{
for(j=0;j<3;j++)
{ printf("a[%d][%d]=",i,j);
scanf("%d",&a[i][j]);
}
}
printf("\n The Given matrix is=\n");
for(i=0;i<2;i++)
{
for(j=0;j<3;j++)
{
printf("\t%d",a[i][j]);
}
printf("\n");
}
for(i=0;i<2;i++)
{
for(j=0;j<3;j++)
{
b[j][i]=a[i][j];
}
}
printf("Transpose of matrix=\n");
for(i=0;i<3;i++)
{
for(j=0;j<2;j++)
{
printf("\t%d",b[i][j]);
}
printf("\n");
}
getch();
}
No comments:
Post a Comment