depende de lo que busques podes usar esto:
int pot(int,int);
int main(){
pot(5,10);
return 0;
}
int pot(int h,int p){
if(p==0)return 1;
int i,w;
w=h;
for(i=1;i<p;i++)
h=h*w;
return h;
}
int pot(int,int);
int main(){
pot(5,10);
return 0;
}
int pot(int h,int p){
if(p==0)return 1;
int i,w;
w=h;
for(i=1;i<p;i++)
h=h*w;
return h;
}