在 C 语言中,
我有一个数组[3][2];
int i = 0, j = 0;
for (i = 0; i < 3; i++) {
for (j = 0; j < 2; j++) {
printf("%d", array[i][j]);
}
}
当我使用 gcc 编译 .c 文件时,错误显示:
format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘int *’
如何使用 C 打印数组?