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
Random number generator must be initialized with random seed. See srand() function. Often it initialized with time: srand(time(NULL)).
srand()
srand(time(NULL))