What is C++?
C++ is a statically-typed, free-form, (usually) compiled, multi-paradigm, intermediate-level general-purpose programming language; not to be confused with C. It was developed in the early 1980s by Bjarne Stroustrup as a set of extensions to the C programming language. Building on C, C++ improved type-safety and added support for automatic resource management, object-orientation, generic programming, exception handling, among other features.
New to C++?
Whether you are new to programming or are coming to C++ from another programming language, it is highly recommended to have a good book from which to learn the language — we keep a detailed list of books.
If you are looking for a good compiler, g++ is the most commonly used compiler on Linux and other platforms, clang is the official compiler on Mac and FreeBSD, and Microsoft Visual C++ is the most commonly used on Windows.
Join us in chat, where we discuss C++, programming in general, and even other stuff when the sun goes down and boredom creeps in. Don't forget your sense of humor, but keep it civilized.
C++11
The language standard remained pretty much the same for a long time, but the new standard C++11 (formerly known as C++0x) has now been published as ISO/IEC 14882:2011. Rather than in a "big bang" approach, it is being rolled out gradually as compilers are supporting the new language features. See Bjarne Stroustrup's C++11 FAQ to see what is new in the language, and check your own compilers' FAQs to see which of those features are currently supported:
- GCC language support and libstdc++ library support
- clang language support and libc++ library support
- MSVC language and library support
A few features that had been under discussion for C++0x have been deferred to the next iteration.
Online compilers
If you want to give C++ a spin, you can try one of the following online compiler services:
- g++ on Coliru or Live Workspace
- Clang on Try out LLVM
Have a Question?
When you ask a question, be sure to include any relevant source code. Try to keep the code as minimal as possible while still being able to reproduce the problem; often the problem will be found during the process of creating that sample code. Try to make sure that the source code compiles, if possible. However, if there are any compiler errors, be sure to indicate:
- which compiler you are using, including its version;
- exactly what the errors are (the exact error message(s)); and
- on which lines they occur (mark those lines with comments)
Stack Overflow's C++ FAQ
We've started an effort to create a list of C++ questions frequently asked on Stack Overflow. You can reach them using the c++-faq tag.
External FAQs
- C++ FAQ: frequently asked C++ questions (formerly C++ FAQ Lite)
- C++ Templates FAQ
- Bjarne Stroustrup's C++ Style and Technique FAQ
- Bjarne Stroustrup's C++11 FAQ
Other External Resources
- ISO C++ website
- C++ Reference
- ISO's C++ Standards Committee's Papers
- Guru of the Week: article series on high-quality, exception-safe C++ code
- SGI's Standard Template Library Programmer's Guide
- More C++ Idioms
- Boost C++ Libraries (Stack Overflow boost tag)
- Where do I find the current C or C++ standard documents?

