Advertisements
Advertisements
Question
Write short note on pow() function in C++.
Short Note
Solution
The pow() function returns base raised to the power of exponent. If any argument passed to pow() is long double, the return type is promoted to long double. If not, the return type is double. The pow() function takes two arguments:
- base – the base value
- exponent – exponent of the base
Example:
cout << pow(5, 2);
Output:
25
shaalaa.com
C++ Header Files and Built-in Functions
Is there an error in this question or solution?