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

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat38.c                                              */
  3. /*------------------------------------------------------------------*/
  4. #include <stdio.h>
  5. #include <stdlib.h>
  6.  
  7. void main()
  8. {
  9.  div_t minutes;
  10.  int seconds = 2345;
  11.  minutes = div(seconds,60);
  12.  printf("%d ¼φ┤½║Γ½ß╡Ñ⌐≤ %d ñ└ %d ¼φ\n",seconds,minutes.quot,minutes.rem);
  13. }
  14.