Write a program that takes values from user to fill a 2 two dimensional array (Matrix) having two rows and five columns and then Hit and add and subtract and divide these two matrixes and store the result in another matrix
1
Expert's answer
2013-01-29T07:27:53-0500
#include<iostream> using namespace std; & int main (){ int a[5][2],b[5][2],s=0;
Comments
Leave a comment