Removing Trigraphs
This lesson shows how trigraphs have evolved in C++17.
We'll cover the following...
Trigraphs are special character sequences that could be used when a system doesn’t support 7-bit
ASCII (like ISO 646). For example ??=
generated #
, ??-
produced ∼
. (All of C++’s basic source character set ...