#include #include #include #include int main(int argc, const char *argv[]) {      int i;      unsigned int ts;      struct _timeb timebuffer;            _ftime( &timebuffer );      memcpy(&ts, &timebuffer, sizeof(unsigned int));      srand( ts );      for(i=0; i <= 10; i++)              printf("%d\n", rand());      return 0; }