home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a120 / 1.ddi / WATCOM_C / WAT141.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-09  |  398 b   |  15 lines

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat141.c                                             */
  3. /*------------------------------------------------------------------*/
  4. #include <stdlib.h>
  5. #include <stdio.h>
  6.  
  7. void main()
  8. {
  9.    int i;
  10.  
  11.    printf("ÑHñU¼OñGñQ¡╙└H╛≈╝╞¡╚: \n");
  12.    for(i=0; i<20; i++)
  13.       printf("%2d. %d\n", i+1, rand() );
  14. }
  15.