Write a C++ program to read a matrix of size m * n from the keyboard and display the same on the screen using class and object
#include #include #include class abc { private: int m,n,m1[8][8],c,r,i,j; public: abc() { cout<<"Enter the value of array"; cout<<"\nM=: "; cin>>m; cout<<"N=: "; cin>>n; } void getdata() { c=6,r=5; gotoxy(c,r); cout<<"Matrix"; c=2,r=7; gotoxy(c,r); for(i=0; i