Thread: Complete list of functions

  1. #1
    Registered User
    Join Date
    Jan 2009
    Posts
    71

    Complete list of functions

    Hi ..

    Is there any place where i could get a COMPLETE list of functions in "math.h" or any other header file for that matter ?
    And i mean COMPLETE .. for example today i found out that math.h has a function called "hypot(x,y)" that returns sqrt(x*x+y*y) .. now i was unable to find it on the web ..

    Any links ?

    Thanks !

  2. #2
    Registered User
    Join Date
    Feb 2010
    Posts
    26
    Visit the following link.

    <math.h>

  3. #3
    Registered User
    Join Date
    Jan 2009
    Posts
    71

    Thanks

    Thank you

  4. #4
    and the hat of sweating
    Join Date
    Aug 2007
    Location
    Toronto, ON
    Posts
    3,545
    You could always open the header file and see for yourself.
    "I am probably the laziest programmer on the planet, a fact with which anyone who has ever seen my code will agree." - esbo, 11/15/2008

    "the internet is a scary place to be thats why i dont use it much." - billet, 03/17/2010

  5. #5
    Registered User
    Join Date
    Feb 2010
    Posts
    36
    You can also view all the functions in the header file by the following way.

    Include the header file in your program.After that,place the cursor in the header file and press gf,it will go to the header file where all the functions are defined.

    (NOTE:This will work if you use vim editor).

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. One more linked list implementation
    By BlackOps in forum C Programming
    Replies: 17
    Last Post: 07-16-2009, 09:34 PM
  2. singly linked circular list
    By DarkDot in forum C++ Programming
    Replies: 0
    Last Post: 04-24-2007, 08:55 PM
  3. Replies: 3
    Last Post: 11-04-2006, 01:09 PM
  4. Replies: 3
    Last Post: 03-04-2005, 02:46 PM
  5. singly linked list
    By clarinetster in forum C Programming
    Replies: 2
    Last Post: 08-26-2001, 10:21 PM