C GAMES, written by Nathan Butcher
-----------------------------------

This is simply a small collection of games written in C which I did several 
years ago in my few moments of spare time.
The code was originally done on MS Visual Studio, but has been edited to compile
under gcc for Linux/UNIX (I'm not sure how backward compatible it is with 
Visual Studio now however)

I'm not the best C programmer, but I have tried to use some routines to avoid 
buffer overflows (by avoiding use of scanf), and you will note the rather nice
random number routine I had to come up with so I could pick random numbers  
between positive and negative numbers.

As the code is GPL, and since I am far from an experienced C programmer, please 
let me know of any ways to fix the code or improve it. Not only will you make a
better, but you will also get bragging rights and the satisfaction of teaching
me your expert knowledge. ;)

I don't think there are bugs, but since I've been fairly sloppy getting this 
code out, there could be.

Oh, and if somebody wants to work on making graphical/windowed versions of these
diversions, please get in contact with me.

INSTALLING
----------

Quite easy really. I really couldn't be bothered making a Makefile, so all you
have to do is type:

gcc <filename.c> -o filename

where <filename.c> is the source code of the game you want to compile.
And that's it!
