gw: guess the word

This C program is a game that involves guessing a word letter by letter. You can specify word list files from which to pick the word. You can specify when a turn ends.

Download

Compile

  1. Download one of the archive files.
  2. Unpack the archive file. For example:
    • To unpack gw.tar.xz: tar -xJf gw.tar.xz
    • To unpack gw.tar.gz: tar -xzf gw.tar.gz
    • To unpack gw.zip: unzip -q gw.zip
  3. Go to the gw directory. For example: cd gw
  4. Compile and link the executable file. For example:
    • With make: make
    • Without make: gcc -o gw gw.c -lm