I'm initializing the seed in a for loop. How did i initialize "randomly" each time the for loop goes through an interation?

This is what i have now

Code:
for (i=1; i<5; i++)
{
     srand((unsigned int) time(0));
}
What do i do to change the seed so that different psuedorandom numbers
are generated?