Computer Science, asked by ashnajayakar27, 19 days ago

write a program to use the pow() of any input no.

Answers

Answered by simialingalparambu
0

Answer:

Given two numbers base and exponent, pow() function finds x raised to the power of y i.e. xy. Basically in C exponent value is calculated using the pow() function. pow() is function to get the power of a number, but we have to use #include<math.h> in c/c++ to use that pow() function. then two numbers are passed. Example – pow(4 , 2); Then we will get the result as 4^2, which is 16.

Similar questions