Code : /************************************************************************* ************************************************************************* A C++ Program to Multiply two Matrices. ************************************************************************ ************************************************************************/ /************************************************************************* */ /* // DOWNLOADED FROM -: HARYIIPSONE.TRIPOD.COM // CODED-By : HARSHIT PANDEY // E-mail : HARYIIPSONE.TRIPOD.COM // Web-Site : HARYIIPSONE.TRIPOD.COM // ******** THINK HIGH TO ACHIEVE HIGH ********** /* *************************************************************************/ /************************************************************************* / /************************************************************************* / //--------------------------- Header iles ----------------------------// /************************************************************************* / /************************************************************************* / # include # include # include /***********************************************************************/ /***********************************************************************/ //---------------------- Class Defination ----------------------------// /***********************************************************************/ /***********************************************************************/ /***********************************************************************/ //----------------------------- Matrix ------------------------------// /***********************************************************************/ class Matrix { private: float matrix_a[3][3]; float matrix_b[3][3]; float matrix_c[3][3]; public: Matrix( ); void get_matrix_a( ); void get_matrix_b( ); void multiply_matrices( ); void show_result_Matrix( ); }; /***********************************************************************/ /***********************************************************************/ //---------------------- Functions Definations ----------------------// /***********************************************************************/ /***********************************************************************/ /***********************************************************************/ //---------------------------- Matrix( ) ----------------------------// /***********************************************************************/ Matrix::Matrix( ) { for(int i=0;i<3;i++) { for(int j=0;j<3;j++) { matrix_a[i][j]=0; matrix_b[i][j]=0; matrix_c[i][j]=0; } } gotoxy(1,1); cout<<" ************************************************************************** ****"<