Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Subtract Matrix In C Programming
WhatsApp
Shobana J
8y
186.4
k
0
1
25
Blog
submat.zip
Introduction
In this blog, I am going to explain how to subtract the matrix.
The program finds the difference between the two matrices.
Software Requirements
Turbo C++ OR C
Programming
#include < stdio.h >
int
main()
{
int
m, n, c, d, first[10][10], second[10][10], difference[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(
"Difference of entered matrices:-\n"
);
for
(c = 0; c < m; c++)
{
for
(d = 0; d < n; d++)
{
difference[c][d] = first[c][d] - second[c][d];
printf(
"%d\t"
, difference[c][d]);
}
printf(
"\n"
);
}
return
0;
}
Explanation
In the programming given above, the subtraction of matrices can print the resultant elements in a simple manner.
Output
Subtract Matrix
C Programming
Up Next
Add Two Matrices In C
Ebook Download
View all
Printing in C# Made Easy
Read by 22.5k people
Download Now!
Learn
View all
Membership not found