I was looking up cplusplus.com stuff because I am making a matrix class and I would like to do scalar multilication. Anyway I tried making this prototype: Code: matrix operator* (
const matrix&, double); matrix operator* (double, const matrix&); suffice to say I got this error: `matrix matrix::0perator*(const matrix&, double)' must take either zero or one argument so then...