Example: 54=625
Ans.
/* c program for calculator power of number*/
#include<stdio.h>
#include<conio.h>
int main()
{
int num,pow,res=1;
printf("\nEnter number and power : ");
scanf("%d %d",&num,&pow);
while(pow>=1)
{
res=res*num;
pow--;
}
printf("%d",res);
return 0;
}
Output:
Enter number and power : 5
4
625
No comments:
Post a Comment