#include <stdio.h>

const int BSIZE= 8;

void print_board(char [BSIZE][BSIZE]);
/* Function to print the board to screen */
int main(int argc, char* argv[])
{
	/* Set up an array for the board and fill it with spaces */
	char board[BSIZE][BSIZE];
	int i,j;
	for (i= 0; i < BSIZE; i++) {
		for (j= 0; j < BSIZE; j++) {
			board[i][j]=' ';
		}
	}
	/* Position some pieces lower case is black*/
	board[0][0]='r';  /* Rooks */
	board[7][0]='r';
	board[0][7]='R';
	board[7][7]='R';
	board[1][0]='n';  /* kNights */
	board[6][0]='n';
	board[1][7]='N';
	board[6][7]='N'; 
	board[4][0]='k'; /* Kings */
	board[4][7]='K';
	/* Finish off placing the pieces */
	print_board(board);
	return 0;
}

void print_board(char game_board[BSIZE][BSIZE])
/* Print the characters on a square game board */
{
	/* Put your printing code here */	
}


