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

  1. main()    /* pow.c -- illustrates pow() */
  2. {
  3.     double a,b,c;
  4.  
  5.     a = 2;
  6.     b = 5;
  7.     c = pow(a,b);
  8.     printf("%g\n",c);
  9.     printf("Correct answer is 32.000000\n");
  10.  
  11. /* Result: pow yields a to the b */
  12. }
  13.