Q:

Write a C program to find power of a number ( x^n ) using pow function

0

Write a C program to find power of a number ( x^n ) using pow function. Here’s simple program to find power of a number ( x^n ) using pow function in C Programming Language.

Write a C program to input any two numbers x and y and find their power using inbuilt pow() function. How to find power of two numbers in C programming. How to use pow() function in C programming. C program to compute power of two numbers using predefined library function.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Below is the source code for C program to find power of a number ( x^n ) using pow function which is successfully compiled and run on Windows System to produce desired output as shown below :

SOURCE CODE : :

/*  C program to find power of a number ( x^n ) using pow function  */

#include <stdio.h>
#include <math.h>

int main()
{
    int x,n;
    int result;

    printf("Enter the value of base: ");
    scanf("%d",&x);

    printf("\nEnter the value of power: ");
    scanf("%d",&n);

    result =pow((double)x,n);

    printf("\n%d to the power of %d is= %d", x,n, result);
    return 0;
}

OUTPUT : :

Enter the value of base: 4

Enter the value of power: 4

4 to the power of 4 is= 256

Above is the source code for C program to find power of a number using pow function which is successfully compiled and run on Windows System.The Output of the program is shown above .

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C Number Solved Programs – C Programming

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Write a C program to calculate difference of two n... >>
<< C program to find largest and smallest of three nu...