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
Download a compressed archive file:
Unpack
Unpack the archive file. For example:
-
To unpack
gw.tar.lz: tar -xf gw.tar.lz -
To unpack
gw.tar.gz: tar -xf gw.tar.gz -
To unpack
gw.zip: unzip -q gw.zip
Compile
-
Go to the
gwdirectory. For example: cd gw -
Compile and link the executable file. For example:
-
With
make: make -
Without
make: gcc -o gw gw.c -lm
-
With