Report Bug
Qus : pow(x,y) is used to
Qus pow (x, y) का उपयोग किया जाता है

A. power of y to the x
B. power of x to the y
C. logarithm of x on the base y
D. Such function does not exist


Solution
B. power of x to the y



Explanation

The function pow() is used to calculate the power raised to the base value. It takes two arguments. It returns the power raised to the base value. It is declared in "math.h" header file.




Report Bug