Hello!

Quick Q:

If a class needs the random number generator to work right, should I srand() in the constructor?

Will this cause problems in the program is srand() is called elsewhere?

Or should I just call srand in the main() of any program using that class?

Is there any convention on this?