fork download
  1. #include <stdio.h>
  2.  
  3. void array_mul(int (*x)[2], int (*y)[2], int (*ans)[2]);
  4.  
  5. int main(void) {
  6. int x[2][2] = { {1,2}, {3,4} };
  7. int y[2][2] = { {1,2}, {3,4} };
  8. int ans[2][2] = { 0 };
  9.  
  10. array_mul(x, y, ans);
  11.  
  12. return 0;
  13. }
  14.  
  15. void array_mul(int (*x)[2], int (*y)[2], int (*ans)[2]) {
  16. for(int i=0;i<2;i++){
  17. for(int j=0;j<2;j++){
  18. ans[i][j] = x[i][0] * y[0][j] + x[i][1] * y[1][j];
  19. printf("%d\n", ans[i][j]);
  20. }
  21. }
  22. }
  23.  
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
7
10
15
22