#include
int pw(int j, int n){
int power,i;
power=1;
for(i=1;i<=n;i++)
power*=j;
return power;
}
int main (void)
{
int a,b;
printf("Enter two non-negative number:\n");
scanf("%d%d",&a,&b);
printf("%d",pw(a,b));
system("pause");
return 0;
}
c, c++ , java, oracle, database design, c tutorial, c++ tutorial, java tutorial, oracle tutorial, programming, make program easy, c programming, c advance program, java advance program
All rights reserved||Using Deluxe Template By Klodian
0 comments:
Post a Comment