home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c025 / 1.ddi / EXP.C < prev    next >
Encoding:
Text File  |  1985-02-03  |  214 b   |  11 lines

  1. main()    /* exp.c -- computes exponential value of a number */
  2. {
  3.  
  4. float x = 1.0;
  5. float y = 0.0;
  6.  
  7.     printf("exp of 1 is %f; of 0, %f.", exp(x), exp(y));
  8.  
  9. /*    Correct result: 1 is 2.718282; 0 is 1.000000 */
  10. }
  11.