No products in the cart.

Program to multiply two matrix using …

CBSE, JEE, NEET, CUET

CBSE, JEE, NEET, CUET

Question Bank, Mock Tests, Exam Papers

NCERT Solutions, Sample Papers, Notes, Videos

Program to multiply two matrix using class
  • 1 answers

✍️ ? 5 years, 11 months ago

#include<iostream.h> #include<conio.h> class matrix { int a[10][10]; int m,n; public: void input(); void output(); void multiply(matrix,matrix); }; void matrix::input() { cout<<"Enter the number of row : "; cin>>m; cout<<"Enter the number of column : "; cin>>n; cout<<"Matrix"<<"\n"; for(int i=0;i<m;i++) { for(int j=0;j<n;j++) { cin>>a[i][j]; } } } void matrix :: output() { for(int i=0;i
http://mycbseguide.com/examin8/

Related Questions

What are called tokens
  • 2 answers

myCBSEguide App

myCBSEguide

Trusted by 1 Crore+ Students

Test Generator

Test Generator

Create papers online. It's FREE.

CUET Mock Tests

CUET Mock Tests

75,000+ questions to practice only on myCBSEguide app

Download myCBSEguide App