fork download
  1. #include <stdio.h>
  2.  
  3. void calculation(int (*x)[2],int (*y)[2],int (*ans)[2]);
  4.  
  5. int main(void) {
  6.  
  7. int x[2][2]={1,2,3,4};
  8. int y[2][2]={1,2,3,4};
  9. int ans[2][2]={0};
  10.  
  11. calculation(x,y,ans);
  12.  
  13. for(int i=0;i<2;i++){
  14. for(int j=0;j<2;j++){
  15. printf("%2d",ans[i][j]);
  16. }
  17. printf("\n");
  18. }
  19.  
  20. return 0;
  21. }
  22.  
  23. void calculation(int (*x)[2],int (*y)[2],int (*ans)[2])
  24. {
  25. for(int i=0;i<2;i++){
  26. for(int j=0;j<2;j++){
  27. for(int k=0;k<2;k++){
  28.  
  29. ans[i][j]=ans[i][j]+x[i][k]*y[k][j];
  30.  
  31. }
  32. }
  33. }
  34. }
Success #stdin #stdout 0.01s 5268KB
stdin
Standard input is empty
stdout
 710
1522