English
Tamil Nadu Board of Secondary EducationHSC Science Class 11

Write a C++ program to find the difference between two matrices. - Computer Science

Advertisements
Advertisements

Question

Write a C++ program to find the difference between two matrices.

Answer in Brief

Solution

PROGRAM
#include<iostream>
#include<conio.h>
using namespace std;
int main( )
{
int row, col, m1[10][10], m2[10][10], sum[10][10];
cout<<“Enter the number of rows : “;
cin>>row;
cout<<“Enter the number of columns :”;
cin>>col;
cout<< “Enter the elements of first matrix: “<<endl;
for (int i = 0;i<row;i++ )
for (int j = 0;j <col;j++ )
cin>>m1[i][j];
cout< < “Enter the elements of second matrix: “<<endl;
for (int i = 0;i<row;i++ )
for (int j = 0;j<col;j++ )
< cin>>m2[i][j];
cout<<“Output: “<<endl;
for (int i = 0;i<row;i++ )
{
for (int j = 0;j<col;j++ )
{
sum[i][j]=m1[i][j] – m2[i][j]); cout<<sum[i][j]<<“”;
}
cout<<endl<<endl;
}
getch( );
return 0;
}
Output

 

shaalaa.com
  Is there an error in this question or solution?
Chapter 12: Arrays and Structures - Evaluation - Section - D [Page 225]

APPEARS IN

Samacheer Kalvi Computer Science [English] Class 11 TN Board
Chapter 12 Arrays and Structures
Evaluation - Section - D | Q 1. | Page 225
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×