IN C CODING LANGUAGE!!!! PLS Call function displayBoard, passing as an argument 2d array board THIS IS MY CODE THAT I NE
Posted: Sun Jul 03, 2022 11:24 am
IN C CODING LANGUAGE!!!! PLS
Call function displayBoard, passing as anargument 2d array board
THIS IS MY CODE THAT I NEED HELP WITH!!
// main functionint main(){ // initialize the dice array int dice[DICE][SIDES] = { }; // declare array for boggle board int board[ROWS][COLS] = { }; // declare array to keep track of which dice has beenused int dice[DICE][SIDES]{ }; // initialize the usedDice array
// initialize the board array // call function welcomeScreen welcomeScreen(); // call function clearScreen clearScreen(); // call function displayExplicitBoard displayExplicitBoard(); // call function clearScreen clearScreen(); // call function displayCard() displayBoard();
// new function declarations displayDice(); createBoard(); getLetter(); // program executed successfully return 0;}
THANK YOU !
Call function displayBoard, passing as anargument 2d array board
THIS IS MY CODE THAT I NEED HELP WITH!!
// main functionint main(){ // initialize the dice array int dice[DICE][SIDES] = { }; // declare array for boggle board int board[ROWS][COLS] = { }; // declare array to keep track of which dice has beenused int dice[DICE][SIDES]{ }; // initialize the usedDice array
// initialize the board array // call function welcomeScreen welcomeScreen(); // call function clearScreen clearScreen(); // call function displayExplicitBoard displayExplicitBoard(); // call function clearScreen clearScreen(); // call function displayCard() displayBoard();
// new function declarations displayDice(); createBoard(); getLetter(); // program executed successfully return 0;}
THANK YOU !