C program to raise any number x to a positive power n

C program to raise any number x to a positive power n

#include<stdio.h>
#include<conio.h>
#include<math.h>

void main()
{
int x,n,result;
clrscr(); //to clear the scrren
printf(“Enter value of x and n:”);
scanf(“%d%d”,&x,&n);
result=pow(x,n);
printf(“nResult=%d”,result);
getch(); //to stop the screen
}

2 thoughts on “C program to raise any number x to a positive power n”

Leave a Comment

Your email address will not be published. Required fields are marked *