<div class="news_item">#348<div class="news_title">Article: Generating Pseudo-Random Numbers in C++
Posted by dandriff on Wednesday March 25, 2009@12:26PM
A good read: Random Number Generation 102, Coding a Linear Congruential Generator
However, it should be noted that this kind of random number generation is /not/ of cryptographic-grade. See Mersenne twister (code example) instead, if you want that.