I have a class that has a matrix
class A{
private:
    int matrix[10][5];
};
Also I have other class with method that get matrix and do with it
class B{
public:
    void method(/*What to write here?*/){...}
};
So, help to releaze the syntax. How to take matrix from class and send it to other class?
 
     
     
    