Is there any programs out there that are like Api-Guide or API-Viewer but for C++? Just something that lists them and shows examples maybe. Thanks in advance
Printable View
Is there any programs out there that are like Api-Guide or API-Viewer but for C++? Just something that lists them and shows examples maybe. Thanks in advance
http://www.winprog.org/tutorial/ best site ever
seeing as winprog.org seems to be the win32 API, not the C++ libraries, here are some I usually use
The STL (Standard Template Library) - the C++ library which provides the vector template and its friends.
http://www.sgi.com/tech/stl/index.html
cplusplus.com seems to be a very good site for finding things about C++ generally
http://www.cplusplus.com/doc/tutorial/
iostream
http://www.cplusplus.com/ref/iostream/
Other stuff is also available - very useful.
Slarty