Logo 
Search:

C++ Programming Articles

Submit Article
Home » Articles » C++ Programming » Homework HelpRSS Feeds

Write a program to Add Two Matrix

Posted By: Easy Tutor     Category: C++ Programming     Views: 35062

Write a Program for Matrix Addition in C++, a program should capable to take two matrix and display matrix addition.

Code for Write a program to Add Two Matrix in C++ Programming

/*www.DailyFreeCode.comDownload Projects, Sourcecodes, Tips and Tricks, Interview FAQs, Hotlinks and more....Logon to www.DailyFreeCode.com*///Matrix Addition by Overloading + operator

#include <iostream.h>
#include <conio.h>

class matadd
{
  int **a;
  int row,col;
  public:
   matadd(){}
   matadd(int r,int c);
   void getdata(void);
   void display(void);
   matadd operator + (matadd o2);
};

matadd :: matadd(int r,int c)
{
  row=r;
  col=c;
  a=newint *[row];
   for(int i=0;i<row;i++)
     a[i]=newint[col];
}

void matadd :: getdata(void)
{
   cout<<"\n\nEnter Data for "<<row<<" rows and "<<col
       <<" cols\n\n";
   for(int i=0;i<row;i++)
   {
     for(int j=0;j<col;j++)
        cin>>a[i][j];
   }
}

void matadd :: display(void)
{
  cout<<"\n\n\nMatrix Display\n\n";
  for(int i=0;i<row;i++)
  {
    for(int j=0;j<col;j++)
      cout<<a[i][j]<<" ";
    cout<<endl;
  }
}

matadd matadd :: operator + (matadd o2)
{
   matadd temp(row,col);
    for(int i=0;i<row;i++)
     {
     for(int j=0;j<col;j++)
      {
       temp.a[i][j]=a[i][j] + o2.a[i][j];
      }
     }
return temp;
}

void main()
{
  clrscr();
  matadd o1(3,2),o2(3,2),o3;

  o1.getdata();
  o2.getdata();

  o3=o1+o2;

  o3.display();

  getch();
}
  
Share: 


Didn't find what you were looking for? Find more on Write a program to Add Two Matrix Or get search suggestion and latest updates.

Easy Tutor
Easy Tutor author of Write a program to Add Two Matrix is from United States. Easy Tutor says

Hello Friends,

I am Free Lance Tutor, who helped student in completing their homework.

I have 4 Years of hands on experience on helping student in completing their homework. I also guide them in doing their final year projects.

I have share many programs on this website for everyone to use freely, if you need further assistance, than please contact me on easytutor.2ya [at the rate] gmail [dot] com

I have special discount scheme for providing tutor services. I am providing tutor service to students from various contries, currently most of my students are from United States, India, Australia, Pakistan, Germany, UK and Canada.

I am also here to expand my technical network to receive more opportunity in my career, make friends to help them in resolving their technical problem, learn and share my knowledge, If you like to be my friend, Please send me friend request.

Thanks,
Happy Programming :)

 
View All Articles

 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!