Hangman CLI Game is a command-line version of the classic game, Hangman. It was created just for fun in an effort to learn the C programming language.
To get a copy of this script, use the following command:
git clone https://github.com/jakebrehm/hangman-cli.git
In order to begin playing, compile and run the program using the following commands:
gcc hangman.c
./a.out
which will compile and then run the program.
The game should be familiar, or at the very least self-explanatory, from there.