tags:

views:

494

answers:

8

Do you know of a precise and concise online C++ syntax reference? Please provide the link...

+1  A: 

Try http://www.cplusplus.com/reference/ for the library.

Try http://www.kuzbass.ru:8086/docs/isocpp/ for the Final Draft International Standard for C++98.

Try http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2008/n2798.pdf for the Working Draft Standard for C++0X.

Thomas L Holaday
This is a good C++ **Library** reference. I need one for **Syntax**
Yaakov Belch
Note: This site isn't entirely accurate, or at least the reference for istream::sync() (cplusplus.com/reference/iostream/…) is not standards-compliant, as I discovered yesterday while working on a user input problem. Caveat programmer?
sheepsimulator
Updated answer.
Thomas L Holaday
+5  A: 

cppreference.com

Microsoft specific reference.

John Weldon
+2  A: 

http://www.cprogramming.com/reference/

Peter Elespuru
+4  A: 

Given the complexity of C++, I don't think a concise C++ syntax reference is possible. :) For not-so-concise references look here

Dima
+2  A: 

http://cplusplus.com/ is a good online reference for C/C++, I'm not sure if this is what you are after.

It has very good coverage of std library.

stefanB
Always may first port of call
Patrick
+1  A: 

There are a bunch. I use these pretty regularly.

cplusplus.com and cppreference.com

Duck
+1  A: 

My favourite is definetly http://www.grepdocs.com/ because it provides other languages too but for specific c++ reference, i head to http://www.cppreference.com/wiki/

rasjani
grepdocs.com is extremely cool.
sheepsimulator
+2  A: 

http://www.parashift.com/c++-faq-lite/

kitchen