There is more than one way to implement a pseudo-random number generator.
Every programming language is free to specify its own rand
implementation, or even to specify nothing. For example, the C specification only says that "The rand
function computes a sequence of pseudo-random integers in the range 0 to RAND_MAX
." There's no mention of how rand
should work, so the compiler writers can implement rand
however they like.
Many compilers use a linear congruential generator to implement rand
. Even this simple algorithm has parameters that the compiler is free to specify, and which changes the sequence of numbers given by a particular seed.

Look how Borland and glibc use different parameters. You can't even trust rand
to work the same across all C programs, let alone all programs in general!