Advertisements
Advertisements
प्रश्न
Write short note on pow() function in C++.
टिप्पणी लिखिए
उत्तर
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
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?