Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re2 (rand() in C): A little C code converted to Perl *HELP*

by bbfu (Curate)
on Nov 03, 2003 at 17:54 UTC ( [id://304190]=note: print w/replies, xml ) Need Help??


in reply to Re: A little C code converted to Perl *HELP*
in thread A little C code converted to Perl *HELP*

The rand function in C returns a random integer. The OP's C code seems to assume 16 bit integers, so that's a max of 65535 (or 32767 to -32768, IIRC). So, I think the equivalent Perl code would be something like:

$gcheck = sprintf "%x", ((int(rand(65536)) << 16) | int(rand(65536)));

bbfu
Black flowers blossom
Fearless on my breath

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://304190]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (3)
As of 2024-04-24 22:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found