upper triangular matrix upper triangular matrix

          C program for upper triangular matrix #include <stdio.h> int  main(){    int  a[3][3],i,j;    float  determ...

Read more »

transpose of a matrix transpose of a matrix

        C program for transpose of a matrix #include <stdio.h> int  main(){    int  a[10][10],b[10][10],i,j,k=0,m,n; ...

Read more »

Subtraction of two matrix Subtraction of two matrix

         C program for subtraction of two matrices #include <stdio.h> int  main(){    int  a[3][3],b[3][3],c[3][3],i,j;   p...

Read more »

Strassen matrix multiplication Strassen matrix multiplication

      C program - strassen matrix multiplication #include <stdio.h> int  main(){    int  a[2][2],b[2][2],c[2][2],i,j; ...

Read more »

sparse matrix sparse matrix

C program for sparse matrix   #include <stdio.h>   void  main () {   static   int  m1[10][10];   int  i,j,m,n; ...

Read more »

sort row and column of a matrix sort row and column of a matrix

   C program to sort row and column of a matrix #include <stdio.h>   void  main () {   static   int  ma[10][10],mb[10...

Read more »

Multiplication of two matrix Multiplication of two matrix

C program for multiplication of two matrices #include <stdio.h> int  main(){    int  a[5][5],b[5][5],c[5][5],i,j,k,sum=...

Read more »

lower triangular matrix lower triangular matrix

            C program for lower triangular matrix #include <stdio.h> int  main(){    int  a[3][3],i,j;    float  determ...

Read more »

inverse of a matrix inverse of a matrix

                   C program - inverse of a matrix #include <stdio.h> int  main(){    int  a[3][3],i,j;    float  det...

Read more »

Inter change diagonal numbers of a Matrix Inter change diagonal numbers of a Matrix

      C program for changing diagonal elements of a matrix #include <stdio.h>   void  main() {   int  A[10][10];   ...

Read more »
 
Top