ECS30 Programming Assignment 5

$30.00

Category: You will Instantly receive a download link for .zip solution file upon Payment

Description

5/5 - (2 votes)

Problem 1: connectfour (100 points, 9 per test case, 10 pts for Makefile)
In this problem you will write a program that plays connect four. The program should
start by asking the user for the dimensions of the board. Two players proceed by dropping
coins into the columns. Coins fall to the bottom, and if a player has 4 coins in a row
(horizontally, vertically, or diagonally), then that player wins the game. See http://www.
connectfour.org/connect-4-online.php if you are unfamiliar with the game.
Skeleton code has been written for you, though you do not need to use it. If you use
the skeleton code, you should define the body of main and the body of the functions in
gameboard.c. For example output, see example*.txt.
Files to turn in:
1. connectfour.c
2. gameboard.c
3. gameboard.h
4. Makefile
We must be able to create your code on the command line using make.
∗Last updated February 26,
1