I wanted to multiply two 3 by 3 matrices A and B, resulting in matrix C.
C= A*B
Cij= Sum(Aik*Bkj)(0<=k<3)
Let prompt user input matrices A and B for 3 by 3.
My code went like this... but it wont show in a matrix... its just a sentence.
I haven't done the multiplications yet cuz i cant get over this part.
I am not good in using arrays... i might have forgot something or did stupid mistakes... sorry about that beforehand.