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.