vote up 10 vote down star
11

For many questions, especially for C-related ones, the answer seems to be found in "the standard". However, where do we find that - online?
Googling can sometimes feel futile, again especially for the C standards, since they are drowned in the flood of discussions on programming forums ;)

To get this started, since these are the ones I am searching for right now, where are there good online resources for:

  • C89
  • C99
  • C++
flag

70% accept rate

16 Answers

vote up 13 vote down

As of today (17 September 2008), the best locations (in terms of price) for C/C++ standards documents (all in PDF form) are:

Note that the C90 standard is much more useful than the significantly different C99 standard, since C99 hasn't been widely implemented by compilers. If you want a hardcopy of the C90 standard for much less money than the PDF cited above (in the Australian AS 3955-1991), you may be able to find a cheap used copy of Herb Schildt's book "The Annotated ANSI Standard" at Amazon. The book contains the actual text of the standard:

http://www.amazon.com/Annotated-ANSI-Standard-Programming-Languages-C/dp/0078819520


As mentioned in several answers here, the draft versions of these standards are freely downloadable (refer to those answers or Google for download locations). However, in my opinion, even though the draft versions might be very close to the final ratified versions of the standards, you should really get a copy of the actual documents - especially if you're planning on quoting them as references. Of course, starving students should go ahead and use the drafts if strapped for cash.

link|flag
vote up 3 vote down

C99 is available online. Quoted from www.open-std.org:

The lastest publically available version of the standard is the combined C99 + TC1 + TC2, WG14 N1124, dated 2005-05-06. This is a WG14 working paper, but it reflects the consolidated standard at the time of issue. In 2007, TC3 has been published.

link|flag
vote up 1 vote down

current standard is C++03 but as soon as possible they are outing C++0x (and we all hope that x==9)

I suggest to read "C++ Programming Language" the book of Bjarne Stroustrup. It's the standard.

link|flag
1  
TC++PL is not the standard. – Steve Jessop Oct 12 at 18:10
vote up 1 vote down

ISO standards cost money, from a moderate amount (for a PDF version), to a bit more (for a book version).

While they aren't finalised however, they can usually be found online, as drafts. Most of the times the final version doesn't differ significantly from the last draft, so while not perfect, they'll suit just fine.

link|flag
vote up 1 vote down

The ISO C and C++ standards are bloody expensive. On the other hand, the INCITS republishes them for a lot less. http://www.techstreet.com/ seems to have the PDF for $30 (search for INCITS/ISO/IEC 14882:2003).

Hardcopy versions are available, too. Look for the British Standards Institute versions, published by Wiley.

link|flag
vote up 1 vote down

For C/C++ you have to buy the standard to one of the organization supporting it. While it is very expensive to buy it via ISO, the same standard is quite cheap if bought from ANSI (~20$ for C++ standard).

link|flag
vote up 1 vote down

You might find the latest C++0x draft Standard useful.

link|flag
vote up 1 vote down

The C89/90 and C++03 standards are available in book form from Wiley. C++ Standard on Amazon C Standard on Amazon

Plus, as already mentioned, the working draft for future standards is often available from the committee websites: C++ committee website C committee website

The C-201x draft is available as N1336, and the C++0x draft as N2723.

link|flag
Just a note about the print version for the C Standard from Wiley: it's the C99 standard, not C89/90. – Michael Burr Sep 26 '08 at 22:14
vote up 1 vote down

The actual standards documents may not be the most useful. Most compilers do not fully implement the standards and may sometimes actually conflict. So the compiler documentation that you would already have will be more useful. Additionally, the documentation will contain platform-specific remarks and notes on any caveats.

link|flag
vote up 1 vote down

Re the usefulness of the standards drafts versus the PDFs of the ratified versions: I have access to the final PDFs through my university library, and I have found the PDF for the C++ standard to be less useful than the HTML draft. The main reason is cross-references: It's much easier to get to the Overloaded Operators section by clicking on a [over.oper] link than by searching for the section number and skipping all the occurrences that in the table of contents, etc.

link|flag
vote up 0 vote down

C++ is an ISO standard that costs a lot of money (370 swiss francs, which is about 330 dollar). I don't know about the other, but I suspect it's similar.

link|flag
vote up 0 vote down

Search Google for this: c89 ansi standard

Etc. Also, there is probably a copy in the back of any good book on the language.

Otherwise, you have to buy it. Here: http://home.att.net/~jackklein/c/standards.html

link|flag
vote up 0 vote down

Wikipedia and usually the documentation that comes with the compiler. Some compilers implement a different standard in some cases.

For example under Windows snprintf function would return negative value in case the buffer was to short while the current linux implementation would return the buffer size needed to hold all the characters.

A good programming book would also be very usefull. Check out Bruce Eckel's Thinking in C++ ... it's free.

link|flag
vote up 0 vote down

The cost of standards can wildly vary based on which organization provides them, too. This is why I'm a fan of ITU standards (such as H.264): they're all completely free online, as the ITU is a branch of the United Nations. Most standards organizations don't provide such luxury.

link|flag
vote up 0 vote down

for what kind of questions can the answer be found in "the standard"? usually the standard is referred to by people who have something to do with the C compiler, either implementing it, or testing it, or writing standard libraries.

It would be more helpful for this site if you can ask the questions in question!

Mostly, you should check with the documentation you get with your compiler. If you want help on the while keyword, and you are on visual studio, the better place to look would be msdn. The standard will just throw you off with a lot of BNF grammar rules that are supposed to make sense.

also, as another poster pointed out, there are lot of things which are "implementation defined", which means it is more useful to consult the documentation that came with your compiler than the standard.

link|flag
I frequently write code intended to work on more than one compiler, including compilers as-yet unimagined. The standard is invaluable here (although GCC with -pedantic is most of the benefit for a fraction of the effort). – Steve Jessop Oct 12 at 18:12
vote up 0 vote down

You might find the cppreference site useful at http://www.cppreference.com/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.