LoudNPossiblyWrong
LoudNPossiblyWrong

Reputation: 3893

Good C++11 information, other than Wikipedia?

Does anyone know a good website where I can find information on C++11, other than Wikipedia?

Upvotes: 2

Views: 425

Answers (4)

Ricky65
Ricky65

Reputation: 1687

http://en.cppreference.com/w/cpp

Great wiki for C++ information.

Upvotes: 7

steffen
steffen

Reputation: 8958

I use this one a lot: http://www.cplusplus.com/reference/

Upvotes: 1

Puppy
Puppy

Reputation: 146910

You should check out the Visual Studio Team Blogs. They discuss quite heavily the new features in C++0x, which are in VS2010, and how they can be used.

Upvotes: 2

mloskot
mloskot

Reputation: 38912

The best I know is ISO/IEC JTC1/SC22/WG21 - The C++ Standards Committee where the n3092.pdf document is available.

Upvotes: 4

Related Questions