我试图在C中打印一个网格,以便稍后放置一个对象。输出应该是这样的:
- - -
- - -
- - -
但是我不断收到错误excess elements in char array initializer
,我不知道为什么,有什么建议吗?
#include <stdio.h>
#define X 3
#define Y 3
// Print the array
void printArray(char row[][Y], size_t one, size_t two)
{
// output column heads
printf("%s", " [0] [1] [2]");
// output the row in tabular format
for (size_t i = 0; i < one; ++i) {
// output label for row
printf("\nrow[%lu] ", i);
// output grades for one student
for (size_t j = 0; j < two; ++j) {
printf("%-5d", row[i][j]);
}
}
}
int main(void)
{
// initialize student grades for three students (rows)
char row[X][Y] =
{ { "-", "-", "-"},
{ "-", "-", "-"},
{ "-", "-", "-"} };
// output the row
puts("The array is:");
printArray(row, X, Y);
}
答案 0 :(得分:1)
"-"
更改为'-'
。因为"-"
是一个字符串,并且隐式包含'\0'
。因此"-"
的长度为9,因为字节的长度为8。
printf("%-5d", row[i][j]);
至 :
printf("%-5c", row[i][j]);