vs.sv27
2010-10-21 03:09:19 UTC
main( )
{
int a,b,c;
clrscr( );
printf("enter the a,b values");
scanf("%d%d",&a,&b);
c=pow(a,b);
printf("the result is=%d",c);
getch( );
}
how to Compile this program in Linux Terminal ?i already did so many programs in linux ,but this one goes wrong.