C Program to Calculate the Power of a Number
Example on how to calculate the power of a number if the exponent is an integer. Also, you will learn to compute the power using pow() function. C Program to Calculate the Power of a Number To understand this example, you should have the knowledge of following C programming topics: C Program to Reverse a Number C Program to Check Whether a Number is Positive or Negative The program below takes two integers from the user (a base number and an exponent) and calculates the power. For example: In case of 2 3 2 is the base number 3 is the exponent And, the power is equal to 2*2*2 Example #1: Power of a Number Using while Loop #include <stdio.h> int main() { int base, exponent; long long result = 1; printf("Enter a base number: "); scanf("%d", &base); printf("Enter an exponent: "); scanf("%d", &exponent); ...