![]() |
Pow()
My question is how would you write a pow statement for example account = interest(1/r)r?
|
Re: Pow()
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); |
| All times are GMT +5.5. The time now is 11:29. |