In this post you can find out power of a given number using C program. The full source code of this program is given below :
How to write power in c
#include<stdio.h>
int main()
{
int pow,num,i=1;
long int sum=1;
printf("\nEnter a number: ");
scanf("%d",&num);
printf("\nEnter power: ");
scanf("%d",&pow);
while(i<=pow)
{
sum=sum*num;
i++;
}
printf("\n%d The Power %d is: %ld",num,pow,sum);
return 0;
}
Note : Paste this code in your C editor :)