home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c025 / 1.ddi / SIN.C < prev    next >
Encoding:
Text File  |  1985-01-24  |  187 b   |  15 lines

  1. main()    /* sin.c -- computes sine of a number with sin() */
  2.  
  3. {
  4.  
  5. double x;
  6. double result;
  7.  
  8. x = 30;
  9.  
  10. result = sin(x);
  11. printf("%f", result);
  12.  
  13. /* Correct result: -0.988032 */
  14. }
  15.