|
|
@ -46,9 +46,9 @@ char** Schachbrett_erstellen() { |
|
|
|
return Brett; |
|
|
|
} |
|
|
|
|
|
|
|
void print_Schachfeld(char** Brett, int Reihen, int Spalten) { |
|
|
|
for (int i = 0; i < Reihen; i++) { |
|
|
|
for (int j = 0; j < Spalten; j++) { |
|
|
|
void print_Schachfeld(char** Brett) { |
|
|
|
for (int i = 0; i < 8; i++) { |
|
|
|
for (int j = 0; j < 8; j++) { |
|
|
|
printf(" %c ", Brett[i][j]); |
|
|
|
} |
|
|
|
printf("\n"); |
|
|
|