okay I've added Time.h but my book says to seed it with the time, I can't get it to work. Help me please
Printable View
okay I've added Time.h but my book says to seed it with the time, I can't get it to work. Help me please
Use:
Code:#include <time.h>
/* ... */
srand(time(NULL));
Perfect :D Thanks!