Write a C program to find the Transpose of a Matrix



Transpose of a Matrix, C, Program, Sumit Kar, Timus Rak


#include <stdio.h>

void main()

{

    int a[10][10], trans[10][10], r, c, i, j;

    printf("Enter rows and column of matrix: ");

    scanf("%d %d", &r, &c);


/* Storing element of matrix entered by user in array a[][]. */

    printf("\nEnter elements of matrix:\n");

    for(i=0; i<r; ++i)

    for(j=0; j<c; ++j)

    {

        printf("Enter elements a%d%d: ",i+1,j+1);

        scanf("%d",&a[i][j]);

    }

/* Displaying the matrix a[][] */

    printf("\nEntered Matrix: \n");

    for(i=0; i<r; ++i)

    for(j=0; j<c; ++j)

    {

        printf("%d  ",a[i][j]);

        if(j==c-1)

            printf("\n\n");

    }


/* Finding transpose of matrix a[][] and storing it in array trans[][]. */

    for(i=0; i<r; ++i)

    for(j=0; j<c; ++j)

    {

       trans[j][i]=a[i][j];

    }


/* Displaying the transpose,i.e, Displaying array trans[][]. */

    printf("\nTranspose of Matrix:\n");

    for(i=0; i<c; ++i)

    for(j=0; j<r; ++j)

    {

        printf("%d  ",trans[i][j]);

        if(j==r-1)

            printf("\n\n");

    }










}


Comments

Popular posts from this blog

Write a Program to Add two 3x3 Matrix using C

C program for Unit Conversion

Write a Program to Add two 5x5 Matrix using C