I\'m taking a C refresher and took on a board game as an exercise. The board game is \"Game of the Generals\" and is pretty much like chess as it uses pieces with ranks on a
you should use srand() to seed your random generator.
A common random seeding is srand ( time(NULL) );
srand ( time(NULL) );