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

  1. main()    /* tan.c -- illustrates tan(), the tangent function */
  2.  
  3. {
  4.  
  5. double x;
  6. double result;
  7.  
  8. x = 85;
  9.  
  10. result = tan(x);
  11. printf("%f", result);
  12. /* correct answer is 0.178870 */
  13. }
  14.