tem
tem

Reputation: 367

How many versions of the C++ Standards are there?

In C there's C89, C99, and C11; what about C++? Is there any upgrade since it came out?

Upvotes: 23

Views: 14467

Answers (1)

Prasoon Saurav
Prasoon Saurav

Reputation: 92854

  • C++98 (ISO/IEC 14882:1998) is the first edition.

  • C++03 (ISO/IEC 14882:2003) is the second edition and often considered a bugfix, but it has many changes.

  • C++11 is the third edition.

  • C++14 is the fourth edition.

  • C++17 is the latest edition (as of 2017).

You can download PDFs of the standards and drafts.

Upvotes: 27

Related Questions