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

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat128.c                                             */
  3. /*------------------------------------------------------------------*/
  4. #include <stdio.h>
  5. #include <stdlib.h>
  6.  
  7. void main()
  8. {
  9.     int result;
  10.     int x = 20;
  11.     int y = -20;
  12.  
  13.     result = min(x,y);
  14.     printf(" %d ╗P %d ╕√ñp¬╠¼░ : %d",x,y,result);
  15. }
  16.