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

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