बिजनेस मार्केटिंग का लो कॉस्ट फंडा , अपने मोबाइल से ऑटो sms भेजकर मार्केटिंग करे विजिट करे http://autotextsms.com/ बिजनेस मार्केटिंग का लो कॉस्ट फंडा http://autotextsms.com/

Search This Blog

Translate

Write a recursive function to find square root of a number


Write a recursive function to find square root of a number.

#include "math.h"
#include "float.h"
float MySqrt(float num, float prev)
{
    float next = (prev+num/prev)/2;
    if (fabs(next-prev)<FLT_EPSILON*next)
        return next;
    return MySqrt(num, next);
}

To call it, pass 1.0 as your initial guess for the prev parameter.

Write a recursive function to find square root of a number.

C Program example List