program to calculate a to the power b without using pow function
Answers
Answered by
0
Answer:
Program to calculate a to the power b without using pow function.
Explanation:
#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);
while (exponent != 0)
{
result *= base;
--exponent;
}
printf("Answer = %lld", result);
return 0;
}
Output:-
Enter a base number: 2
Enter an exponent: 43
Answer = 8
Similar questions