Run time error in code

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));