Hi,
does anybody know where I can get a complete documentation of the different C++ headers such as <iostream.h>, <math.h>, <string.h>, <stdlib.h> and all the others.
Is there a separate dec for the STL as well?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
does anybody know where I can get a complete documentation of the different C++ headers such as <iostream.h>, <math.h>, <string.h>, <stdlib.h> and all the others.
Is there a separate dec for the STL as well?
Documentation of c headers:
http://www.gnu.org/manual/glibc-2.2.5/text/libc.txt
tkorrovi
Try this:
http://www.xraylith.wisc.edu/~khan/software/stl/STL.newbie.html
Here to find more of the same:
http://search.yahoo.com/search?p=the+STL+
Note that it is dangerous to think in terms of <iostream.h>, its now <iostream> with all the function names pulled into the standard namespace.
Wayne