home *** CD-ROM | disk | FTP | other *** search
- main() /* srand.c -- illustrates srand() */
- /* seeds random number generator for repeatable sequence */
-
- {
- int i, j, n;
- unsigned u;
-
- u = 392;
- for (j = 0; j < 2; j++) {
- srand(u);
- for (i = 0; i < 5; i++) {
- n = rand();
- printf("%d ",n);
- }
- puts("");
- }
- puts("Both sequences should be the same.");
- }