#include<stdio.h>
int main()
{
int n,i,c=1,p;
printf("Enter thenumber\n");
scanf("%d",&n);
printf("Enter the power\n");
scanf("%d",&p);
for(i=1;i<=p;i++)
{
c=c*n;
}
printf("Power of %d^%d=%d",n,p,c);
}
OUTPUT
Enter the number
6
Enter the power
2
Power of 6^2=36
Visit Homepage
Comments
Post a Comment