/Blackjack

A CLI blackjack game.

Primary LanguageC

#Blackjack

This is a CLI blackjack game written in C. It has a very simple dealer AI and only uses 1 deck. This is the second version of a project that I did when I first started learning programming. This version was written after my first programming class.

##Files ###blackjack.c This is the main entry point for the game. It sets up the deck and shuffles it for the first play. ###functions.c This file contains the functions that govern the actual playing of the game. e.g. Dealing the cards, AI logic, making/ shuffling the deck, etc. ###prototypes.h Contains the defined values, defines the struct for the deck, and defines the functions that are used in the program. ###rank, suit, and value These files are used for creating the deck at the beginning of the game.