run time error
Run time error in code
Hey @Akshay0404
In your multiply function, you’re using
vector<vector> result();
instead it should be
vector<vector> result(2,vector(2));
run time error
Hey @Akshay0404
In your multiply function, you’re using
vector<vector> result();
instead it should be
vector<vector> result(2,vector(2));