|
Newbie Member
|
|
| 5Feb2007,18:02 | #1 |
|
Hai guys please someone explain me about "pow statement"....
|
|
Go4Expert Founder
|
![]() |
| 5Feb2007,19:23 | #2 |
|
Defined in
#include <math.h> Syntax: double pow( double b, double p ); Description: It returns base (b) raised to the power(p). Example: double x = pow(2,3) will return 2 x 2 x 2 = 8 |