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();
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment