I'm trying to make a code which displays a checkerboard/chessboard. I gave every square on the checkerboard a number, so I can manually choose the position of the pieces as purpose of future programming. This is what I got:
#include <stdio.h>
//{",",",",",",","},
void main()
{
int board[8][8] = {
{'1','2','3','4','5','6','7','8'},
{'9','10','11','12','13','14','15','16'},
{'17','18','19','20','21','22','23','24'},
{'25','26','27','28','29','30','31','32'},
{'33','34','35','36','37','38','39','40'},
{'41','42','43','44','45','46','47','48'},
{'49','50','51','52','53','54','55','56'},
{'57','58','59','60','61','62','63','64'}
};
/* Display the checkerboard */
printf("\n\n");
printf(" %c | %c | %c| %c | %c | %c | %c | %c \n", board[0][0], board[0][1], board[0][2], board[0][3], board[0][4], board[0][5], board[0][6], board[0][7]);
printf("---+---+---+---+---+---+---+---\n");
printf(" %c | %c | %c| %c | %c | %c | %c | %c \n", board[1][0], board[1][1], board[1][2], board[1][3], board[1][4], board[1][5], board[1][6], board[1][7]);
printf("---+---+---+---+---+---+---+---\n");
printf(" %c | %c | %c| %c | %c | %c | %c | %c \n", board[2][0], board[2][1], board[2][2], board[2][3], board[2][4], board[2][5], board[2][6], board[2][7]);
printf("---+---+---+---+---+---+---+---\n");
printf(" %c | %c | %c| %c | %c | %c | %c | %c \n", board[3][0], board[3][1], board[3][2], board[3][3], board[3][4], board[3][5], board[3][6], board[3][7]);
printf("---+---+---+---+---+---+---+---\n");
printf(" %c | %c | %c| %c | %c | %c | %c | %c \n", board[4][0], board[4][1], board[4][2], board[4][3], board[4][4], board[4][5], board[4][6], board[4][7]);
printf("---+---+---+---+---+---+---+---\n");
printf(" %c | %c | %c| %c | %c | %c | %c | %c \n", board[5][0], board[5][1], board[5][2], board[5][3], board[5][4], board[5][5], board[5][6], board[5][7]);
printf("---+---+---+---+---+---+---+---\n");
printf(" %c | %c | %c| %c | %c | %c | %c | %c \n", board[6][0], board[6][1], board[6][2], board[6][3], board[6][4], board[6][5], board[6][6], board[6][7]);
printf("---+---+---+---+---+---+---+---\n");
printf(" %c | %c | %c| %c | %c | %c | %c | %c \n", board[7][0], board[7][1], board[7][2], board[7][3], board[7][4], board[7][5], board[7][6], board[7][7]);
}
1 | 2 | 3| 4 | 5 | 6 | 7 | 8
---+---+---+---+---+---+---+---
9 | 0 | 1| 2 | 3 | 4 | 5 | 6
---+---+---+---+---+---+---+---
7 | 8 | 9| 0 | 1 | 2 | 3 | 4
---+---+---+---+---+---+---+---
5 | 6 | 7| 8 | 9 | 0 | 1 | 2
---+---+---+---+---+---+---+---
3 | 4 | 5| 6 | 7 | 8 | 9 | 0
---+---+---+---+---+---+---+---
1 | 2 | 3| 4 | 5 | 6 | 7 | 8
---+---+---+---+---+---+---+---
9 | 0 | 1| 2 | 3 | 4 | 5 | 6
---+---+---+---+---+---+---+---
7 | 8 | 9| 0 | 1 | 2 | 3 | 4
main.c:13:37: warning: multi-character character constant[-Wmultichar]
{'57','58','59','60','61','62','63','64'}
you cannot put a string in single quoted characters. Must be a sole character. But it has no meaning to hardcode a list of consecutive integers in strings, so:
A simple double loop with a formula is much more compact and saves a lot of copy/paste:
#include <stdio.h>
void main()
{
int i,j;
/* Display the checkerboard */
printf("\n\n");
for (i=0;i<8;i++)
{
for (j=0;j<8;j++)
{
printf("%3d ",i*8+(j+1));
}
printf("\n---+---+---+---+---+---+---+---\n");
}
}
result:
1 2 3 4 5 6 7 8
---+---+---+---+---+---+---+---
9 10 11 12 13 14 15 16
---+---+---+---+---+---+---+---
17 18 19 20 21 22 23 24
---+---+---+---+---+---+---+---
25 26 27 28 29 30 31 32
---+---+---+---+---+---+---+---
33 34 35 36 37 38 39 40
---+---+---+---+---+---+---+---
41 42 43 44 45 46 47 48
---+---+---+---+---+---+---+---
49 50 51 52 53 54 55 56
---+---+---+---+---+---+---+---
57 58 59 60 61 62 63 64
---+---+---+---+---+---+---+---
enhanced version with better framing (just for fun)
#include <stdio.h>
void main()
{
int i,j;
/* Display the checkerboard */
printf("\n\n\n|---+---+---+---+---+---+---+---+\n");
for (i=0;i<8;i++)
{
printf("|");
for (j=0;j<8;j++)
{
printf("%2d |",i*8+(j+1));
}
printf("\n|---+---+---+---+---+---+---+---+\n");
}
}
result
|---+---+---+---+---+---+---+---+
| 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
|---+---+---+---+---+---+---+---+
| 9 |10 |11 |12 |13 |14 |15 |16 |
|---+---+---+---+---+---+---+---+
|17 |18 |19 |20 |21 |22 |23 |24 |
|---+---+---+---+---+---+---+---+
|25 |26 |27 |28 |29 |30 |31 |32 |
|---+---+---+---+---+---+---+---+
|33 |34 |35 |36 |37 |38 |39 |40 |
|---+---+---+---+---+---+---+---+
|41 |42 |43 |44 |45 |46 |47 |48 |
|---+---+---+---+---+---+---+---+
|49 |50 |51 |52 |53 |54 |55 |56 |
|---+---+---+---+---+---+---+---+
|57 |58 |59 |60 |61 |62 |63 |64 |
|---+---+---+---+---+---+---+---+
still not an ASCII-art mastery but better :)