Write a function power(a,b), to calculate the value of a raised to b.

#include<stdio.h>
main()
{

int power (a,b);
int a, b, result;

printf("Enter the value of a and b:");
scanf ("%d %d", &a, &b);

result=power(a,b);
printf("%d raised to %d is %d", a, b, result);

}

power (int a, int b)
{

int calculation=1, calc;
for (calc=1; calc <=b; calc++)

{
calculation=calculation*a;
continue;
}

return(calculation);
}





The File can be found at:
Download File

1 comment:

kiss on google ads if you are anonymous because your ip is trackable.thank you.

......from.admin