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

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat150.c                                             */
  3. /*------------------------------------------------------------------*/
  4. #include <stdio.h>
  5. #include <math.h>
  6.  
  7. void main()
  8. {
  9.    double x = 0.2;
  10.  
  11.    printf("%lf ñºÑ┐⌐╢¡╚¼░ %lf\n",
  12.            x, sin(x));
  13. }
  14.