New Features of C++: Automatic Type Inference
 
Automatic type inference (or type deduction) is where you allow the compiler to infer the type information used for a...
New Features of C++: Move Semantics

Move semantics are another game-changer introduced in C++11. One large complaint about writing C++ code was that copy...

New Features of C++: Lambdas

Code written for modern C++ (C++11 and later) is often structured differently than code written for C++03 and earlier – STL...