answersLogoWhite

0

Either you can use the pre defined function "pow" in the <math.h> header file OR you can make a user defined function to do the same operation.

1.Using the pre defined function in <math.h> :

The function is a of datatype double and accepts only values in double. So, prototype declaration is:

double pow(double x,double y);

Pass the values to the function and it'll return the value of xy. In the calling function it can be declared as:

double power=pow(x,y);

2.USER DEFINED FUNCTION:

double power(double x,int y);

int main()

{

double x,result;

int y;

cout<<"\nEnter the base: "<<;

cin>>x;

cout<<"\nEnter the exponential power: ";

cin>>y;

result=power(x,y);

cout<<"The result of x to the power y is: "<<result;

return 0;

}

double power(double x,int y)

{

for(int i=0;i<=y;i++)

{

x*=x;

}

return x;

}

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

What function is used to perform exponentiation in C language?

You can use the pow() function in math.h.


What is the operator of power in c plus plus?

There is no "power" operator in C or C++. You need to the use the math library function pow().


Explain use of pow in c language?

The general form of the pow function is: double pow(double base, double exp); Which returns the value of baseexp This function may be overloaded to allow for different parameter and return types, but the basic function is the same.


Create a function for power in C?

Not necessary, there is a predefined 'pow' function.


Which header file must be included to use the function pow?

The std::pow() function can be found in the &lt;cmath&gt; header.


Formula of power in c program?

There is a function called pow in header math.h


How do you write a program in c to compute the power of a number without using the mathh library?

There is a function which can do it for you. You have to include math.h in headers. And then use the function pow(x, y) which returns a value of type double (x and y are double too).pow(x, y) = x to the power of y.


How do you use this function in c programme?

I don't use that function in C programme.


What is C program to find power of number?

Use #include &lt;math.h&gt;, and then add to your code the function pow(x, y), which returns double and equals to x to power y (x and are both double).


How do you find the square root of a number in C?

You write a function that evaluates the square root of its argument and returns the result to the caller.You can also use the run-time library functions in math.h ...double sqrt (double x);double pow (double x, (double) 0.5);


What is the implementation of the distance function in C for calculating the distance between two points in a program?

To implement the distance function in C for calculating the distance between two points in a program, you can use the formula for Euclidean distance: double distance sqrt(pow((x2 - x1), 2) pow((y2 - y1), 2)); This formula calculates the distance between two points (x1, y1) and (x2, y2) in a Cartesian coordinate system.


What is the Simple definition of power in c basic program?

A mathematical function declared in math.h: double pow (double b, double q);