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

  1. main()    /* rand.c -- obtains random positive integers from rand() */
  2.  
  3. {
  4.     int i, n;
  5.  
  6.     for (i = 0; i < 5; i++) {
  7.         n = rand();
  8.         printf("%d ",n);
  9.     }
  10.     puts("\nThere are no correct answers.");
  11. }
  12.