I am curious: Is cplusplus.com written in c++? The site seems to execute rather quickly. I would be very interested to see what the source code looks like.
admkrk, that's not how a website engine works. For instance, if you visit a page implemented via PHP, it's going to output html. This is because php is executed server-side and sends the client html.
EDIT: As such, a C++ website would be implemented probably via CGI or similar and you would never see this code (unless the author wished to give it to you).
c++ doesnt speed it up. what determines a sites speed would mostly be determined by the following factors (iirc):
-the translator
-how much data is being transferred
-how fast the network is able to transfer the data
-how fast the client is able to pick it up