Create a class called Matrix that represents a 3x3 matrix. This matrix contains a two-dimensionalinteger array of size 3x3. Provide the following member functions for this class:a. A no-argument constructor for initializing the matrix with 0 values.b. A one-argument constructor to initialize the member matrix to the matrix sent as an argumentfrom the calling function.c. An AddMatrix function for addition of two matricesd. A MultiplyMatrix method for finding the product of the two matrices.e. An isEqual function for checking the equality of two matricesNote: Define all the member functions outside the class.Write a main function to test this class.
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here