...
Compliant Solution (POSIX)
A better pseudorandom number generator is the The POSIX random()
function is a better pseudorandom number generator. Although the low dozen bits generated by rand()
go through a cyclic pattern, all the bits generated by random()
are usable.
...