home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c025 / 1.ddi / SRAND.C < prev    next >
Encoding:
Text File  |  1985-01-24  |  332 b   |  19 lines

  1. main()    /* srand.c -- illustrates srand() */
  2. /* seeds random number generator for repeatable sequence */
  3.  
  4. {
  5.     int i, j, n;
  6.     unsigned u;
  7.  
  8.     u = 392;
  9.     for (j = 0; j < 2; j++) {
  10.         srand(u);
  11.         for (i = 0; i < 5; i++) {
  12.             n = rand();
  13.             printf("%d ",n);
  14.         }
  15.         puts("");
  16.     }
  17.     puts("Both sequences should be the same.");
  18. }
  19.