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

  1. main()    /* cos.c -- computes cosine of a number */
  2.  
  3. {
  4.  
  5. double x;
  6. double result;
  7.  
  8. x = 23.0;
  9.  
  10.     result = cos(x);
  11.     printf("cosine equals %f", result);
  12. /* Correct answer is: -0.532833 */
  13. }
  14.