How to view the source code for iostream?

Hello,

I am new to C++, although I have some experience with PHP, C++ is completely new to me.

I am taking C++ at college, I have successfully done the Hello World! and other assignments. We are using MS Visual Studio 2008.

How can I see the source code for the libraries included in my code, like:

#include<iostream>
#include<string>

and if possible all the available libraries already built in.

Thank you.

Angel
Finding the implementation of the standard library is quite hard, they don't give it with the compiler. If you want you can see the headers file (For template stuff they would have the implementation). To see the header file on VC++ IDE left click on iostream in your code ad select Open Document <iostream>
Topic archived. No new replies allowed.