Feedback for these lessons is very much welcome. If you like or hate something about a lesson let us know, either on GitHub, via Mail or just tell us in person ;)
x
Hangman
Write a simple hangman game! Everytime the player is wrong, add a new part to the gallows / the hanging man and print it to the terminal:
-----
|/ o
| ^W^
| / \ word: game o_e_
| wrong: hfnwitc
-----
/ \
/ \
=============
Experts: Have a list of possible words in the source code and let the program randomly choose one at the start.
###Hints###
strncmp() compares two strings.