Math sqrt function

#include
main()
{
printf(“%f”,sqrt(49));
}

Tutorial Answer:
7.000000
Debugging solution:
Normally float value display into 6 decimal character after the point,so the result is..,

Post a Comment

0 Comments