source:
trunk/platforms/caba-ring-ccxcachev4_memcachev4-mips32el/soft/matrix_multiplication/matrix_multiplication_print.c
@
137
Last change on this file since 137 was 134, checked in by , 14 years ago | |
---|---|
File size: 241 bytes |
Line | |
---|---|
1 | #include "matrix_multiplication.h" |
2 | #include "stdio.h" |
3 | |
4 | void matrix_multiplication_print (int ** m, unsigned int n) |
5 | { |
6 | int i,j; |
7 | for (i=0; i<n; ++i) |
8 | { |
9 | for (j=0; j<n; ++j) |
10 | printf("%d ",m[i][j]); |
11 | printf("\n"); |
12 | } |
13 | } |
Note: See TracBrowser
for help on using the repository browser.