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

  1. main() /* atan.c -- computes arc tangent of a number */
  2. {
  3.  
  4. double number, result;
  5. number = 1.0;
  6. result = atan(number);
  7. printf("%f", result);
  8. /*    The correct answer is:  0.785398 */
  9. }
  10.