const Return Types
Let’s learn about the kinds of variables a function can return.
We'll cover the following...
A function can return values, references, and pointers, and all of these can be const
. However, does it make sense to convert them to const
? Let’s find out!
Returning const
objects by value
The first-time const
users might get enthusiastic about ...