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
- Download one of the archive files.
-
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
- Go to the gw directory. For example: cd gw
-
Compile and link the executable file. For example:
- With make: make
- Without make: gcc -o gw gw.c -lm