Task 2 Skeleton Code

Please don't include any extra libraries in your homework. We already included all necessary libraries in the skeleton code.

#include <stdio.h>
#include <stdbool.h>
#include <stdint.h>
#include <string.h>

#define BOARD_SIZE 9

/**
 * @brief some message prompts for you to printf
 * @details I am too lazy to write like the other 
 *          skeleton codes but this should be 
 *          enough. Good luck!
 *
 * "CAPITAL letter's turn\n"
 * "small letter's turn\n"
 *
 * "Which piece you want to move?\n"
 * "Where do you want to move to?\n"
 *
 * "CAPITAL letter team wins!\n"
 * "small letter team wins!\n"
 * "Stalemate\n"
 */
 
int main(){}

Last updated