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.

So lets us check out the code :)



#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="">





















Happy Coding :)

Comments

Popular posts from this blog

MultiSelection of Item in Recycler View

DFS(Depth First Search) & BFS(Breath First Search) in C