This is the famous hangman game made in C++ from scratch playable on the console.
It utilizes the Random word API to fetch random words and curl to process HTTP requests.
The player's objective is to guess the hidden word.
- The player starts by guessing one alphabet a time.
- If the alphabet exists in the hidden word, all instanes of the alphabet is revealed.
- If the alphabet does not exist, the player has missed.
- If the player is able to guess the word before 6 tries the player WINS
- If not the player LOSES
- Player can guess alphabets only (a ~ z).
- Player has 6 tries total.
- Every guess of the alphabet has to be unique. NOT THE SAME
- Compile
g++ main.cpp -o programName -lcurl - Run
./programName


