Removing the 'register' Keyword
'register' allowed us to store a variable in a registers. Let's see why it has been deprecated.
We'll cover the following...
The register
keyword was deprecated in 2011 (C++11), and it has no meaning since that time.
It was removed in C++17. The keyword is reserved and might be ...