Thread: C++ Function List(Full)

  1. #1
    Redundantly Redundant RoD's Avatar
    Join Date
    Sep 2002
    Location
    Missouri
    Posts
    6,331

    C++ Function List(Full)

    I have realized lately that no matter how hard i look in books, online, on cprogramming, etc that all i can find is a partial Function List for C++. I don't even care it doesn't have the explanations but there HAS to be a complete Function List.

    Anyone have one or have a idea as to where i can get one?

  2. #2
    Registered User
    Join Date
    Jan 2002
    Location
    Vancouver
    Posts
    2,212
    open the standard library header files:
    i.e. stdlib.h
    and there, you have a list of all the functions.

  3. #3
    Redundantly Redundant RoD's Avatar
    Join Date
    Sep 2002
    Location
    Missouri
    Posts
    6,331
    unfortunatly i am not yet comfortable enough with the language to pick that apart.

  4. #4
    Registered User
    Join Date
    Jan 2002
    Location
    Vancouver
    Posts
    2,212

  5. #5
    Mayor of Awesometown Govtcheez's Avatar
    Join Date
    Aug 2001
    Location
    MI
    Posts
    8,823
    > maybe: http://www.cprogramming.com/function.html

    Someone needs to finish that...

  6. #6
    Redundantly Redundant RoD's Avatar
    Join Date
    Sep 2002
    Location
    Missouri
    Posts
    6,331
    I have realized lately that no matter how hard i look in books, online, on cprogramming, etc that all i can find is a partial Function List for C++.
    i need a full list, one has GOT to exist

  7. #7
    Just because ygfperson's Avatar
    Join Date
    Jan 2002
    Posts
    2,490
    there is no full list of functions. for a mostly-full list look through the header files. you don't have to be proficient in c++ to do this; just able to know what a function looks like

  8. #8
    Ecologist
    Join Date
    Aug 2001
    Location
    Utah.
    Posts
    1,291
    Originally posted by Ride -or- Die
    i need a full list, one has GOT to exist
    Try here: http://www.delorie.com/djgpp/doc/libc/


    Edit: I don't even know if that's what you were looking for. But, in
    the description of the function, it tells you if it's ANSI or not...
    Last edited by Cheeze-It; 09-12-2002 at 03:50 PM.
    Staying away from General.

  9. #9
    Redundantly Redundant RoD's Avatar
    Join Date
    Sep 2002
    Location
    Missouri
    Posts
    6,331
    nope, thnx for trying tho.

    If i can't get a complete list can u at least tell me what function i could use to set all input as a capital letter? As in its taken in then made a capital and put into a variable:

    int letter;

    cout<<"Enter a letter and press <enter> "<<endl;

    make capital letter here

    cin>>letter;

  10. #10
    End Of Line Hammer's Avatar
    Join Date
    Apr 2002
    Posts
    6,231
    Here's some places I use now and then (not guaranteeing they're complete or anything!):

    http://www.cppreference.com/
    http://www.cplusplus.com/ref/
    http://www.dinkumware.com/manuals/reader.aspx?lib=cpp

    and of course last, but not least
    www.google.com
    When all else fails, read the instructions.
    If you're posting code, use code tags: [code] /* insert code here */ [/code]

  11. #11
    End Of Line Hammer's Avatar
    Join Date
    Apr 2002
    Posts
    6,231
    tolower() and toupper() are in ctype.h
    When all else fails, read the instructions.
    If you're posting code, use code tags: [code] /* insert code here */ [/code]

  12. #12
    Redundantly Redundant RoD's Avatar
    Join Date
    Sep 2002
    Location
    Missouri
    Posts
    6,331
    hammer u kick ass, thanks alot man seriously.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Seg Fault in Compare Function
    By tytelizgal in forum C Programming
    Replies: 1
    Last Post: 10-25-2008, 03:06 PM
  2. Another syntax error
    By caldeira in forum C Programming
    Replies: 31
    Last Post: 09-05-2008, 01:01 AM
  3. In over my head
    By Shelnutt2 in forum C Programming
    Replies: 1
    Last Post: 07-08-2008, 06:54 PM
  4. Including lib in a lib
    By bibiteinfo in forum C++ Programming
    Replies: 0
    Last Post: 02-07-2006, 02:28 PM
  5. Question..
    By pode in forum Windows Programming
    Replies: 12
    Last Post: 12-19-2004, 07:05 PM