以下のプログラムを使用して
123 012
456から 345という風に変えたいのですが結果が出力されないです。
どうすればいいのでしょうか?
#include <stdio.h>
void add_array(int a[][3], int b[][3], int m, int n);
int main(void) {
int x[2][3]={{1,2,3},{4,5,6}};
int y[2][3]={{-1,-1,-1},{-1,-1,-1}};
add_array(x, y, 2, 3);
// for(int row=0;row<2;row++){
// for(int col=0;col<3;col++){
// printf("%d ",x[row][col]);
// }
// putchar('\n');
// }
return 0;
}
void add_array(int a[][3], int b[][3], int m, int n){
int row,col;
for(row=0;row<m;row++){
for(col=0;col<n;col++){
a[row][col] += b[row][col];
}
}
}
回答1件
あなたの回答
tips
プレビュー