void imprimirTablero(char *tablero[7][7], int *posicionX, int *posicionY)
{
int i, j;
tablero[posicionX][posicionY] = 'R';
for(i = 0; i < LEN(tablero); i++)
{
for(j = 0; j < LEN(tablero[0]); j++)
{
printf(tablero[i][j]);
}
}
}
this method change the char in positionX, positionY and print the new matrix of chars.... please someone help me