Thread: Libraries and functions

  1. #1
    Registered User
    Join Date
    Jun 2006
    Posts
    4

    Libraries and functions

    hello everyone, im new to this forum, and to c++ programming too. i found couple of good tutorials, but the thing i would really like to find is a manual, or some document, where i can find a list of all the libraries (headers, i dont know if they are same thing, but im refering to the "#include <iostream>" part) and the functions they contain. also posibly descriptions for those functions.

    i like to learn a language after some point all by myself, by experimentig with different functions and stuff (i learnt other languages like this, so i think i can do something similar with c++).

    by the way, im using devc++ compiler/editor, and its really good, but the problem is that its help file doesnt contain almost anything ... maybe if u know where to get a big help file with a list of all commonly used headers, and functions they contain i would be grateful

  2. #2
    C++ Witch laserlight's Avatar
    Join Date
    Oct 2003
    Location
    Singapore
    Posts
    28,413
    You should check out the C++ Book Recommendations thread.

    For online resources, I suggest:
    cppreference.com
    SGI's Standard Template Library Programmer's Guide

    Oh, and you could search MSDN.
    Quote Originally Posted by Bjarne Stroustrup (2000-10-14)
    I get maybe two dozen requests for help with some sort of programming or design problem every day. Most have more sense than to send me hundreds of lines of code. If they do, I ask them to find the smallest example that exhibits the problem and send me that. Mostly, they then find the error themselves. "Finding the smallest program that demonstrates the error" is a powerful debugging tool.
    Look up a C++ Reference and learn How To Ask Questions The Smart Way

  3. #3
    Registered User
    Join Date
    Aug 2002
    Location
    Hermosa Beach, CA
    Posts
    446
    Maybe google "C++ Standard Library" or "C++ STL".
    The crows maintain that a single crow could destroy the heavens. Doubtless this is so. But it proves nothing against the heavens, for the heavens signify simply: the impossibility of crows.

  4. #4
    Devil's Advocate SlyMaelstrom's Avatar
    Join Date
    May 2004
    Location
    Out of scope
    Posts
    4,079
    Well, any basic tutorial or book will give you all the information you need about that standard libraries. For specific details about all the standard functions, I like this site:

    http://www.cppreference.com

    How'd Laserlight beat me by 2 minutes? I looked at the thread for like 25 seconds. So that's why she calls herself the C++ Witch.
    Sent from my iPadŽ

  5. #5
    Hardware Engineer
    Join Date
    Sep 2001
    Posts
    1,398
    Here's the MSDN Standard Library link.

    Dinkumware is another good reference.

    The only book that covers the entire C++ Standard Library is the actual C++ language standard. You can get a PDF copies of the C and C++ standards from ANSI for about $20 each, or in printed form for about $300.

    Note that these references only cover Standard C++. There are lots of additional non-standard headers & libraries (i.e. <windows>.

  6. #6
    Registered User
    Join Date
    Jun 2006
    Posts
    4
    k, tnx for replies guys, will get onto learning it right away

  7. #7
    erstwhile
    Join Date
    Jan 2002
    Posts
    2,227
    >>The only book that covers the entire C++ Standard Library is the actual C++ language standard<<

    There's the The C++ Standard British Standards Institution Book.
    CProgramming FAQ
    Caution: this person may be a carrier of the misinformation virus.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. New to c++; Need help with common Libraries and Functions
    By ugmusicbiz in forum C++ Programming
    Replies: 5
    Last Post: 02-07-2009, 11:33 AM
  2. Static libraries and template functions
    By hauzer in forum C++ Programming
    Replies: 4
    Last Post: 10-26-2008, 06:28 AM
  3. Question about Downloading/Uploading Functions
    By TeCNoYoTTa in forum C++ Programming
    Replies: 0
    Last Post: 05-26-2008, 01:36 PM
  4. Borland, libraries, and template member functions
    By roktsyntst in forum C++ Programming
    Replies: 0
    Last Post: 06-01-2003, 09:52 PM
  5. error LNK2001: unresolved external symbol
    By Unregistered in forum C Programming
    Replies: 12
    Last Post: 07-12-2002, 08:45 PM