Posts by Joao Bastos • 11 points
1 post
-
1
votes0
answers109
viewsQ: Determine the values of M and N
M and N are constants defined by #define int mat1[M][N]; int mat2[N][M]; int sum_element(int i, int j) { return mat1[i][j] + mat2[i][j]; } Suppose the above code generates the following in Assembly:…