C program to Add two 3X3 matrix
Addition of two 3X3 matrix
In this post i will share a c program with you that helps you to add 2 3X3 matrix.
#include <stdio.h>
#include <conio.h>
void main()
{
int first[3][3],second[3][3],third[3][3],i,j;
clrscr();
printf("Elements of matrix A:\n ");
for(i=0;i<3 a:="" a="" addition="" atrix="" b:="" d="" first="" for="" getch="" i="" j="" matrix="" n="" nelements="" of="" printf="" r="" scanf="" second="" third="">3>
Comments
Post a Comment