From 6177fc809b13abee192c19e2fb2f115a931e2541 Mon Sep 17 00:00:00 2001 From: Anubhav-developr <71844334+Anubhav-developr@users.noreply.github.com> Date: Fri, 30 Oct 2020 10:31:11 +0530 Subject: [PATCH] Matrix addition program It is useful program to add two matrices --- additionMatrix.c | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 additionMatrix.c diff --git a/additionMatrix.c b/additionMatrix.c new file mode 100644 index 00000000..87783dd5 --- /dev/null +++ b/additionMatrix.c @@ -0,0 +1,32 @@ +#include + +int main() +{ + int m, n, c, d, first[10][10], second[10][10], sum[10][10]; + + printf("Enter the number of rows and columns of matrix\n"); + scanf("%d%d", &m, &n); + printf("Enter the elements of first matrix\n"); + + for (c = 0; c < m; c++) + for (d = 0; d < n; d++) + scanf("%d", &first[c][d]); + + printf("Enter the elements of second matrix\n"); + + for (c = 0; c < m; c++) + for (d = 0 ; d < n; d++) + scanf("%d", &second[c][d]); + + printf("Sum of entered matrices:-\n"); + + for (c = 0; c < m; c++) { + for (d = 0 ; d < n; d++) { + sum[c][d] = first[c][d] + second[c][d]; + printf("%d\t", sum[c][d]); + } + printf("\n"); + } + + return 0; +} \ No newline at end of file