Monday, May 24, 2010

Find 25^0.25 c program?

how can i solve (25^0.25) using c program

Find 25^0.25 c program?
#include %26lt;stdio.h%26gt;


#include%26lt;conio.h%26gt;


#include%26lt;math.h%26gt;


void main()


{


int a,b;


a=25;


clrscr();


b=pow(25,0.25);


printf("%d",%26amp;b);


}


getch();


No comments:

Post a Comment