Write a C program to perform addition of two matrices

In this article, we will write a C program to perform the addition of two matrices. 

ALGORITHM: 

Step 1: Start 

Step21: for i is 0 to 2 by step 1 for j is 0 to 2 by step 1 

Step 3: Read a[i][j],b[i][j] 

Step 4: goto step 2 

Step 5: calculate c[i][j]=a[i][j]+b[i][j] 

Step 6: goto step 2 

Step 7: Print c[i][j] 

Step 8: Stop

Write a C program to perform the addition of two matrices

#include <stdio.h>
#include <conio.h>

void main()
{
	int a[3][3], b[3][3], c[3][3];
	int i, j;
	clrscr();
	printf("ENTER A MATRIX\n");
	for (i = 0; i < 3; i++)
	{
		for (j = 0; j < 3; j++)
			scanf("%d", &a[i][j]);
	}
	printf("ENTER B MATRIX\n");
	for (i = 0; i < 3; i++)
	{
		for (j = 0; j < 3; j++)
			scanf("%d", &b[i][j]);
	}
	for (i = 0; i < 3; i++)
	{
		for (j = 0; j < 3; j++)
			c[i][j] = a[i][j] + b[i][j];
	}
	printf(" After addition of two matrices :\n");
	for (i = 0; i < 3; i++)
	{
		for (j = 0; j < 3; j++)
		{
			printf("%d\t", c[i][j]);
		}
		printf("\n");
	}
	getch();
}

INPUT:

ENTER a MATRIX
1 2 3
4 5 6
7 8 9
ENTER b MATRIX
1 1 1
1 1 1
1 1 1

OUTPUT:

After addition of two matrices is..
2 3 4
5 6 7
8 9 10  

Related C Programs with Output

  1. Write a C Program to Find the Sum and Average of Three Numbers
  2. Write a C Program to Find the Sum of Individual Digits of Positive Integer
  3. Write a C Program to Generate the First N Terms of the Sequence
  4. Write a C Program to Generate All Prime Numbers Between 1 and N
  5. Write a C Program to Check Whether Given Number Is Armstrong Number or Not
  6. Write a C program to evaluate algebraic expression (ax+b)/(ax-b)
  7. Write a C program to check whether a given number is a perfect number or Not
  8. Write a C program to check whether a number is strong number or not
  9. Write a C program to find the roots of a quadratic equation
  10. Write a C program to find the factorial of a given integer using a non-recursive function
  11. Write a C program to find the factorial of a given integer using a recursive function
  12. Write a C program to find the GCD of two given integers by using the recursive function
  13. Write a C program to find the GCD of two given integers using a non-recursive function
  14. Write a C program to find both the largest and smallest number in a list of integers
  15. Write a C Program to Sort the Array in an Ascending Order
  16. Write a C Program to find whether the given matrix is symmetric or not
  17. Write a C program to perform the addition of two matrices
  18. Write a C Program That Uses Functions to Perform Multiplication Of Two Matrices
  19. Write a C program to use a function to insert a sub-string in to a given main string from a given position
  20. To delete n Characters from a given position in a given string
  21. Write a C program using user-defined functions to determine whether the given string is palindrome or not
  22. Write a C program to count the number of lines, words, and characters in a given text
  23. Write a C program to find the length of the string using Pointer
  24. Write a C program to Display array elements using calloc( ) function
  25. Write a C Program to Calculate Total and Percentage Marks of a Student Using Structure
  26. Write a C Program to Display the Contents of a File
  27. Write a C program to copy the contents of one file to another

Comments