Answers for "Power Function in C/C++"

C++
0

Power Function in C/C++

#include <cmath> //library for the function 

pow(x,y);

Given two numbers base (x) and exponent (y), pow() function finds x raised to the power of y.
Posted by: Guest on September-28-2021

Browse Popular Code Answers by Language