C Examples

WAP in C that uses a function power that calculates the power of a given number

The Program in C that uses a function power that calculates the power of a given number is given below:

Enter the base number: 7
Enter the exponent: 9
7.000000 raised to the power of 9 is: 40353607.000000
#include <stdio.h>

double power(double base, int exponent) {
    double result = 1;
    for (int i = 0; i < exponent; i++) {
        result *= base;
    }
    return result;
}

int main() {
    double base;
    int exponent;
    printf("Enter the base number: ");
    scanf("%lf", &base);
    printf("Enter the exponent: ");
    scanf("%d", &exponent);
    printf("%lf raised to the power of %d is: %lf\n", base, exponent, power(base, exponent));
    return 0;
}

Output:

Enter the base number: 7
Enter the exponent: 9
7.000000 raised to the power of 9 is: 40353607.000000

Pro-Tips💡

In this program, the power() function takes two arguments: a base number and an exponent.

It uses a for loop to calculate the power by iterating from 0 to the given exponent, multiplying the base number with the result each time.

In the main function, the program prompts the user to enter a base number and an exponent and then passes these values to the power() function.

The function returns the power of the given number, and the program prints the result on the screen.

Please note that if the exponent is negative, the result would be a fraction, in that case you need to include the math.h library and use pow() function which handles negative exponents and floating point bases.

Learn C-Sharp ↗

C-sharp covers every topic to learn about C-Sharp thoroughly.

Learn C Programming ↗

C-Programming covers every topic to learn about C-Sharp thoroughly.

Learn C++ Programming↗

C++ covers every topic to learn about C-Sharp thoroughly.

Codeauri is Code Learning Hub and Community for every Coder to learn Coding by navigating Structurally from Basic Programming to Front-End Development, Back-End Development to Database, and many more.

Related Posts

C# Program to Find Sum of Rows & Columns of a Matrix

The Program in C# Program to Find Sum of Rows & Columns of a Matrix is given below: Output: Hello Codeauri Family,enter the number of rows and columns…

C# Program to Calculate Determinant of Given Matrix

The Program in C# Program to Calculate Determinant of Given Matrix is given below: Output: Hello Codeauri Family, enter the number of rows and columns of the matrix…

C# Program to Find Sum of right Diagonals of a Matrix

The Program in C# Program to Find Sum of right Diagonals of a Matrix is given below: Output: Hello Codeauri Family, enter the number of rows and columns…

C# Program to Find Transpose of Given Matrix

The Program in C# Program to Find Transpose of Given Matrix is given below: Output: Hello Codeauri Family, enter the number of rows and columns in the matrix:22Enter…

C# Program for Multiplication of two square Matrices

The Program in C# Program for Multiplication of two square Matrices is given below: Output: Hello Codeauri Family, enter the number of rows/columns in the matrices:2Enter the elements…

C# Program to Delete Element at Desired position From Array

The Program in C# Program to Delete Element at Desired position From Array is given below: Output: Hello Codeauri Family, enter the number of elements in the array:4Enter…

Leave a Reply

Your email address will not be published. Required fields are marked *

Your Journey into Code Begins Now: Discover the Wonders of Basic Programming

X