How to solve this errors?in c for power function

Viewed 36

There i found my result is not coming correct, please let me know if your answer is correct.if code is wrong let me know where I do it correct.

#include <stdio.h>
#include <math.h>
int main
{
int a,b;
int pow(a,b);
scanf("%d%d",&a,&b);
printf("%d",pow(a,b));

return 0;

}
0 Answers
Related