10

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

stefanB
  • 77,323
  • 27
  • 116
  • 141
Yaakov Belch
  • 4,692
  • 33
  • 39

8 Answers8

18

cppreference.com

Microsoft specific reference.

John Weldon
  • 39,849
  • 11
  • 94
  • 127
6

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

xian
  • 4,657
  • 5
  • 34
  • 38
4

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

Dima
  • 38,860
  • 14
  • 75
  • 115
3

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

Peter Elespuru
  • 32,485
  • 1
  • 17
  • 6
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
2

There are a bunch. I use these pretty regularly.

cplusplus.com and cppreference.com

Duck
  • 26,924
  • 5
  • 64
  • 92
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