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

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