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

減算
111
111