Atomic Data Types
Now we will look at the atomic data types that C++ offers and their applications.
We'll cover the following...
C++ has a set of simple atomic data types. These are booleans, characters, numbers and pointers in many variants. They need the header <atomic>
. You can define your atomic ...