Pow()
|
Newbie Member
|
|
| 20Sep2006,23:08 | #1 |
|
My question is how would you write a pow statement for example account = interest(1/r)r?
|
|
Go4Expert Founder
|
![]() |
| 21Sep2006,10:59 | #2 |
|
Prototype: double pow(double b, double p);
Header File: math.h (C) or cmath (C++) Explanation: This function raises b to the p power. example: cout<<"4 to the 5th power is: "<<pow(4, 5); |

