An error is being given on all printf statements stating:
Data Arguement Not Used by Format Strings.
I looked around on the internet and found some related things however I did not fully comprehend the solution and was hoping maybe someone on here could explain further.
void displayPuzzle()
{
int i, j;
char x = 'A';
for (i = 0; i < COLOUMNS; i ++)
{
printf("%c ", x); //error here
x++;
}
printf("\n\n");
for (i = 0; i < ROWS; i ++)
{
printf("%d\t", i); //error here
for (j = 0; j < COLOUMNS; j ++)
{
printf("%c ", puzzle[i][j]); //error here
}
printf("\n\n");
}
}