/* Simple Matrix Multiply * * Implement naive matrix multiplication for a matrix of integers * */ using namespace std; #include /* Naive Matrix Multiplication */ int * naiveMat(int mat1[][100], int mat2[][100], size_t output_size) { int *output = new int[output_size]; /* YOUR CODE HERE * Fill output with the result of mat1*mat2 */ return output; } int main() { }