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

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat195.c                                             */
  3. /*------------------------------------------------------------------*/
  4. #include <stdlib.h>
  5. #include <stdio.h>
  6.  
  7. void main()
  8. {
  9.      unsigned long value = 85013;
  10.      char buffer[33];
  11.      int i;
  12.  
  13.      for (i=2;i<=36;i++)
  14.      {
  15.           ultoa(value, buffer, i);
  16.           printf("╡L╕╣¬°╛π╝╞ %ld ÑH %2d ¼░░≥⌐│┬α┤½⌐╥▒oñºªrªΩ¼░: %s\n",
  17.                   value, i, buffer);
  18.       }
  19. }
  20.