C++ reference
Moderator: Board moderators
C++ reference
I am just starting to use C++ for my programs, but I am faced with an initial challenge. As a C programmer, I always have K&R's "the C programming language" beside me. This offers a simple, effective and compact reference for ANSI C. For C++, all the books seem voluminous, and don't explain the class stuctures and functions in simple ways. They often contain way more details than I need. Is anyone aware of a website that can be used for a standard C++ reference? ( I am thinking something like java.sun for java)
-
- Experienced poster
- Posts: 145
- Joined: Sat Feb 23, 2002 2:00 am
- Location: Paris, France
- Contact:
http://www.sgi.com/tech/stl/
STL (Standard Template Library) reference. Not a C++-language reference, but really useful as soon as you know the basis of C++.
STL contains many tools, such as queues, sets, hashmaps, and so more. Imho, it only misses one thing : arbitrary precision arithmetic. Nevertheless, pretty damn useful
STL (Standard Template Library) reference. Not a C++-language reference, but really useful as soon as you know the basis of C++.
STL contains many tools, such as queues, sets, hashmaps, and so more. Imho, it only misses one thing : arbitrary precision arithmetic. Nevertheless, pretty damn useful

-
- Experienced poster
- Posts: 202
- Joined: Fri Mar 22, 2002 2:00 am
- Location: Chittagong. CSE - CUET
- Contact:
These seems fine to me what do you think?
http://www.cs.wustl.edu/~schmidt/C++/
http://www.glenmccl.com/tutor.htm
http://www.technipal.com/cpp/
But you should buy the great book of Bjarne Stroustrup
http://www.research.att.com/~bs/homepage.html
