Hello,
I am trying to generate a very large uniformly distributed pseudo-random number (around 15 digits, similar to Random.nextLong() in Java), the problem is that both rand() and random() only return int/long type (10 digits max).
Is there any way to generate pseudo-random number in long long int type?
Thank you.