我想将 500x8 的一行(每个团队迭代一个)复制matrix
到一个名为actual_row
. 这是我尝试过的。
int matrix[500][8]; // this has been already filled by int's
int actual_row[8];
for(int i = 0; i < 500; i++) {
for(int j = 0; j < 8; j++) {
actual_row[j] = matrix[i][j];
printf("The row is: ");
for(int q = 0; q < 8; q++) {
printf(" %d ",actual_row[q]);
// do other stuff
}
}
printf("\n");
}
这不是打印行,它有时会打印 0 和 1,所以我做错了。
提前致谢。