Thread: how sqrt ?

  1. #1
    sambs1978
    Guest

    Question how sqrt ?

    How we can find sqrt without using sqrt function in c

  2. #2
    Unregistered
    Guest
    That should be the multiplication of the number itself.

    sprt(x);
    or
    num2= num1*num1;

  3. #3
    Registered User
    Join Date
    Sep 2001
    Posts
    164
    There are many ways. I don't have them in my head but I'll write some down later.
    // Gliptic

  4. #4
    Skunkmeister Stoned_Coder's Avatar
    Join Date
    Aug 2001
    Posts
    2,572
    try here for maths help.
    Free the weed!! Class B to class C is not good enough!!
    And the FAQ is here :- http://faq.cprogramming.com/cgi-bin/smartfaq.cgi

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. undefined reference to sqrt
    By shamma in forum C Programming
    Replies: 1
    Last Post: 05-09-2009, 01:42 PM
  2. Replies: 5
    Last Post: 06-01-2006, 04:37 PM
  3. sqrt() function help
    By willc0de4food in forum C Programming
    Replies: 5
    Last Post: 03-14-2005, 09:07 PM
  4. SQRT Mystery...
    By KneeLess in forum C Programming
    Replies: 7
    Last Post: 03-23-2004, 07:49 AM
  5. sqrt
    By modec in forum C Programming
    Replies: 3
    Last Post: 04-16-2003, 07:19 AM