C++ Reference

Comprehensive reference documentation for the C++ language and standard library

Language Reference

This section provides detailed information about the C++ language syntax, semantics, and features.

Language Basics

Keywords, operators, expressions, statements, and other fundamental language elements.

Types & Declarations

Built-in types, user-defined types, type conversions, and declarations.

Standard Library Reference

The C++ Standard Library provides a rich set of components that you can use in your programs.

Containers

Sequence containers, associative containers, and container adaptors for storing collections of objects.

Algorithms

Functions for searching, sorting, counting, manipulating, and performing operations on ranges of elements.

C++ Version History

C++ has evolved significantly over the years. Here's a brief overview of the major C++ standards:

C++11 (2011)

Introduced auto type deduction, lambda expressions, range-based for loops, smart pointers, and more.

C++14 (2014)

Added generic lambdas, improved return type deduction, binary literals, and other minor improvements.

C++17 (2017)

Added structured bindings, if constexpr, std::optional, std::variant, std::any, and filesystem library.

C++20 (2020)

Introduced concepts, ranges, coroutines, modules, and the spaceship operator.