Is it possible to have mt_rand() produce a random hexidecimal number instead of an integer? If so, how? If not, can anyone think of another way to do it?
Thanks, jds
Uhh, the number base has nothing to do with it. Have mt_rand() generate your number, then use printf("%x" to display it in hex if you like.