
- C++ Basics
- C++ Home
- C++ Overview
- C++ Environment Setup
- C++ Basic Syntax
- C++ Comments
- C++ Data Types
- C++ Variable Types
- C++ Variable Scope
- C++ Constants/Literals
- C++ Modifier Types
- C++ Storage Classes
- C++ Operators
- C++ Loop Types
- C++ Decision Making
- C++ Functions
- C++ Numbers
- C++ Arrays
- C++ Strings
- C++ Pointers
- C++ References
- C++ Date & Time
- C++ Basic Input/Output
- C++ Data Structures
- C++ Object Oriented
- C++ Classes & Objects
- C++ Inheritance
- C++ Overloading
- C++ Polymorphism
- C++ Abstraction
- C++ Encapsulation
- C++ Interfaces
C++ vs C++0x vs C++11 vs C++98
C++98 was the first edition of the C++ standard. It had defined all the basic language constructs, the STL, and the standard library.
C++03 was the next revision to this standard. This was majorly a considered a bugfix for the standard as it corrected 92 core language defect reports, 125 library defect reports, and included only one new language feature: value initialization.
C++0x was the name of the work in progress that was expected to complete by 2008-09 but finally completed in 2011.
C++11 was the modern C++ standard published in 2011. This brought many major extensions and improvements to the existing language. Following are the major features of C++11 −
- Initializer lists
- Automatic type deduction
- Rvalue references and move constructors
- constexpr – Generalized constant expressions
- Modification to the definition of plain old data
- Uniform initialization
- Range-based for loop
- Lambda functions and expressions
- Alternative function syntax
- Explicit overrides and final
- A constant null pointer, nullptr
- Strongly typed enumerations
- Right angle bracket not being treated as an operator at appropriate places
And many more. You can get the complete list with examples at https://en.wikipedia.org/wiki/C%2B%2B11.
- Related Articles
- OneDrive vs Dropbox vs Google Drive vs Box
- Virtual vs Sealed vs New vs Abstract in C#
- Corona vs. Phonegap vs. Titanium
- mysql_fetch_array vs mysql_fetch_assoc vs mysql_fetch_object?
- C++ vs Java vs Python?
- Running vs Waiting vs Terminated Process
- Zombie vs Orphan vs Daemon Processes
- Cplus plus vs Java vs Python?
- "static const" vs "#define" vs "enum" ?
- Training vs Testing vs Validation Sets
- Swift: print() vs println() vs NSLog()
- Process vs Parent Process vs Child Process
- RUN vs CMD vs Entrypoint in Docker
- Tokens vs Identifiers vs Keywords in C++
- List vs tuple vs dictionary in Python
