I can\'t get my head around this, which is more random?
rand()
OR:
rand() * rand()
I´m f
The answer would be it depends, hopefully the rand()*rand() would be more random than rand(), but as:
Well, if you check any of these above I suggest you go for the simple "rand()". Because your code would be more readable (wouldn't ask yourself why you did write this, for ...well... more than 2 sec), easy to maintain (if you want to replace you rand function with a super_rand).
If you want a better random, I would recommend you to stream it from any source that provide enough noise (radio static), and then a simple rand() should be enough.