#include #include "matrix_lib.h" static matrix_t MA,MB,MC; int main(int argc, char **argv){ int row, column, size = ARRAY_SIZE; /* initialize MA */ matrix_init(size, MA, identity); /* initialize MB */ matrix_init(size, MB, sum); /* display MA */ matrix_printf("A", size, MA); /* display MB */ matrix_printf("B", size, MB); /* multiply the suckers */ for(row = 0; row < size; row++) { for (column = 0; column < size; column++) { mult(size, row, column, MA, MB, MC); } } /* display the result */ matrix_printf("C", size, MC); exit(EXIT_SUCCESS); }