If you want different seeds everytime you could use the current time. So you would do something like this:

#include <time.h>

srand(unsigned(time(NULL)));

Then you will get different numbers from rand() every time without having to specify a seed value.