+11  A: 

Yes, it does.

The grammar is described in detail throughout the standard and is summarized in Appendix A: Grammar Summary (it's Appendix A in both the C++03 standard and the C++0x final committee draft).

You can purchase the C++03 standard or you can download the C++0x FCD (it's document n3092 on that page).

To answer the "what category is it in?" question, the C++ grammar is not context-free (also see the questions linked in answers to that question; they have additional examples of issues related to the C++ grammar and parsing C++).

James McNellis
+1  A: 

Bjarne Stroustrup, the creator of C++, wrote a book called The C++ Programming Language which has been updated many times (I read the 3rd edition about 10 years ago). I recall it had very technical details regarding grammar (pre-processor and compiler).

You can probably find this book in on of your local book stores, it may offer you more enjoyment than a standards document from ANSI, depending on how specific you need to be.

Eugarps
+4  A: 

Andrew Birkett has a thorough overview of parsing C++ on his web site. It covers some of the difficulties in creating a C++ grammar (mixing lexical, syntactic, and semantic analysis) and includes links to several C++ grammars.

Josh Kelley
A: 

Not sure but as far as I see, James McNellis's link (to the pdf) contains a note on the first page:

Warning

This document is not an ISO International Standard. It is distributed for review and comment. It is subject to change without notice and may not be referred to as an International Standard.

So, searched and I think this is the correct link to the official ISO: http://www-d0.fnal.gov/~dladams/cxx_standard.pdf

Poni
The PDF to which I linked is for the final committee draft of the forthcoming C++0x standard; it is the latest version of the next C++ standard, and since it hasn't been completed and ratified, it's not "official." The PDF to which you link is the C++98 standard, to which numerous corrections were made in 2003 to give the C++03 standard; most of the changes were minor, but there were some big changes. I'm actually somewhat surprised there is a PDF of that freely available; I believe the only way to _legitimately_ get a copy of the ISO standard is by purchasing it (via the link I gave).
James McNellis
Well then we both learnt something new today - you, that these ISO docs are freely available, and me, that the link you've provided is what I want to keep in my PC (: Thank you!
Poni