Hi, I'm supposed to make a program that can multiplicate 2 matrices with fixed dimensions, the first one is [7][5], the second one is [5][4]. I was able to find the result, but the output is only 1 column (every result appears under the one before it, instead of it being in 4 columns).
Here is my code until now:
Ok I solved it myself but thanks anyway.
What I did is I switched the loops in line 17 with the one in 23 and put an endl in line 35, something like that, a bit of trial and error.