#include #include #include int main(void) { struct timeval ts; gettimeofday(&ts, NULL); srandom(ts.tv_usec); printf("%li\n",random()); return 0; }