Do you know of a precise and concise online C++ syntax reference? Please provide the link...
Asked
Active
Viewed 4,558 times
10
-
Here a link to a similar question: http://stackoverflow.com/questions/81656/where-do-i-find-the-current-x-standard – Yaakov Belch Jun 21 '09 at 13:42
8 Answers
3
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
- 7,372
- 4
- 22
- 35
2
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
- 77,323
- 27
- 116
- 141
0
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
- 13,614
- 6
- 40
- 51
-
This is a good C++ **Library** reference. I need one for **Syntax** – Yaakov Belch Jun 18 '09 at 15:36
-
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? – J. Polfer Jun 18 '09 at 15:45