Tuesday, February 10, 2015

Matrix Subtraction

/* Program to find the difference of two matrices */ #include <stdio.h> int main() { int a[3][3]; int b[3][3]; int c[3][3]; int i, j; printf("Enter the First matrix:\n"); for(i=0; i<3; i++) for(j=0; j<3; j++) scanf("%d", &a[i][j]); printf("\nEnter the Second matrix:\n"); for(i=0; i<3; i++) for(j=0; j<3; j++) scanf("%d", &b[i][j]); printf("\n\nThe First matrix is"); for(i=0; i<3; i++) { printf("\n"); for(j=0; j<3; j++) printf("%3d", a[i][j]); } printf("\n\nThe Second matrix is"); for(i=0; i<3; i++) { printf("\n"); for(j=0; j<3; j++) printf("%3d", b[i][j]); } /* Subtract the matrices */ for(i=0; i<3; i++) for(j=0; j<3; j++) c[i][j] = a[i][j] - b[i][j]; printf("\n\nThe difference of the two matrices is"); for(i=0; i<3; i++){ printf("\n"); for(j=0; j<3; j++) printf("%3d", c[i][j]); } getch(); return 0; }

Share

& Comment

0 comments:

Post a Comment

 

Copyright © 2015 Code Fervor™ is a registered trademark.

Designed by Templateism By Naman Kumar