http://qs1969.pair.com?node_id=1178680


in reply to rand() function on Windows systems

If you install Inline::C you can access the MS CRT rand() & srand() and wrap them in your own wrappers.

The following code produces 56 (which is the same as I get from Perl's built-ins for 5.10). You might try it on your system and see how it compares:

#! perl -slw use strict; use Inline C => Config => BUILD_NOISY => 1; use Inline C => <<'END_C', NAME => 'junk1_IC', CLEAN_AFTER_BUILD => 0 +; int osrand( SV *seed ) { srand( (unsigned int)SvIV( seed ) ); return 1; } double orand( SV *max ) { return (double)rand() / 32767.0 * SvNV( max ); } END_C osrand( 555 ); print int orand( 1000 );

With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority". The enemy of (IT) success is complexity.
In the absence of evidence, opinion is indistinguishable from prejudice.