An Update from the C Standards Committee WG14

At the end of October 2019, GrammaTech was pleased to host WG14 (the C Standards Committee) in Ithaca, NY. The C committee is...

New Features of C++: Small but Useful Features

C++11 added multiple smaller language features as well as the marquee features we've already talked about. Despite these being...

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...